C:
char c = '\u1114';
printf("%c\n", c); // Output: ᄔ
JavaScript:
const char = '\u1114';
console.log(char); // Output: ᄔ
Java:
char c = '\u1114';
System.out.println(c); // Output: ᄔ
JSON:
{"text": "\u1114"} // Value: ᄔ
Python:
char = '\u1114'
print(char) # Output: ᄔ
Perl:
my $char = "\x{1114}";
print $char; # Output: ᄔ
PHP:
$char = "\x{1114}";
echo $char; // Output: ᄔ
Ruby:
char = "\u{1114}"
puts char # Output: ᄔ
Rust:
let c = '\u{1114}';
println!("{}", c); // Output: ᄔ
Go:
char := '\u1114'
fmt.Printf("%c\n", char) // Output: ᄔ
CSS:
/* CSS content property */
.element::before {
content: "\001114"; /* 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%94
MD5:
f682cd9def47cea9b423df9bef9e5c7d
SHA1:
f9e741e3ddf2e93c0a5ece4d583e222ef0efea67
Base64:
4YSU