ASCII 173
Soft Hyphen (SHY)
Latin-1 Supplement
Latin-1 character.
All encodings at a glance
| Decimal | 173 |
| Hexadecimal | 0xAD |
| Octal | 0255 |
| Binary | 10101101 |
| HTML numeric entity | ­ |
| HTML named entity | ­ |
| URL encoding | %AD |
| UTF-8 bytes | 0xC2 0xAD |
Code snippets
JavaScript
String.fromCharCode(173); // "SHY"
173.toString(16); // "ad"Python
chr(173) # control char SHY
ord(chr(173)) # 173
hex(173) # '0xad'HTML
­ <!-- named entity -->
­ <!-- numeric entity -->Unicode & UTF-8 note
In Unicode this is U+00AD. In UTF-8 it encodes to the byte sequence 0xC2 0xAD. In legacy Latin-1 (ISO-8859-1) it is a single byte 0xAD, which is why Latin-1 files often appear as mojibake when interpreted as UTF-8.