C:
char c = '\u1112';
printf("%c\n", c); // Output: ᄒ
JavaScript:
const char = '\u1112';
console.log(char); // Output: ᄒ
Java:
char c = '\u1112';
System.out.println(c); // Output: ᄒ
JSON:
{"text": "\u1112"} // Value: ᄒ
Python:
char = '\u1112'
print(char) # Output: ᄒ
Perl:
my $char = "\x{1112}";
print $char; # Output: ᄒ
PHP:
$char = "\x{1112}";
echo $char; // Output: ᄒ
Ruby:
char = "\u{1112}"
puts char # Output: ᄒ
Rust:
let c = '\u{1112}';
println!("{}", c); // Output: ᄒ
Go:
char := '\u1112'
fmt.Printf("%c\n", char) // Output: ᄒ
CSS:
/* CSS content property */
.element::before {
content: "\001112"; /* Display: ᄒ */
}
HTML Decimal:
<p>HTML decimal: ᄒ</p> <!-- Display: ᄒ -->
HTML Hexadecimal:
<p>HTML hex: ᄒ</p> <!-- Display: ᄒ -->
URL Encoding:
// ᄒ URL encoding
https://unicodefinder.com/search.php?query=%E1%84%92
MD5:
c4555cd032b9d15de764a85e1f3a8008
SHA1:
13708c7fa43500f5310708c4ea47a866da72cb14
Base64:
4YSS