How to convert hexadecimal format to string format? Give an example? | SAP ABAP

field-symbols:
type any.
data:
lv_string type string value '#SBP0#1123456789 #SBS01',
lv_split type c value '#'."probably not # but cl_abap_char_utilities=>cr_lf or =>horizontal_tab or?
lt_splits type table of string,
lv_result type string.
split lv_string at lv_split into table lt_splits.
loop at lt_splits assigning .
concatenate lv_result into lv_result separated by space.
endloop.
write / lv_result." SBS01 1123456789 SBS01