Character codes: Difference between revisions

m
→‎{{header|REXX}}: added comment about the c2b bif. -- ~~~~
No edit summary
m (→‎{{header|REXX}}: added comment about the c2b bif. -- ~~~~)
Line 701:
say c2x(yyy) /*displays the value of YYY in hexadecimal. */
say c2d(yyy) /*displays the value of YYY in decimal. */
say x2b(c2x(yyy)) /*displays the value of YYY in binary (bit string). */</lang>
/*Note: some REXXes support the c2b bif */</lang>
 
=={{header|Ruby}}==