String Functions PostgreSQL

postgres=#
postgres=# -- length(string) int Length of binary string
postgres=# select length('jo\\000se'::bytea);
 length
--------
      5
(1 row)
postgres=#