C:
char c = '\u114E';
printf("%c\n", c); // Output: ᅎ
JavaScript:
const char = '\u114E';
console.log(char); // Output: ᅎ
Java:
char c = '\u114E';
System.out.println(c); // Output: ᅎ
JSON:
{"text": "\u114E"} // Value: ᅎ
Python:
char = '\u114E'
print(char) # Output: ᅎ
Perl:
my $char = "\x{114E}";
print $char; # Output: ᅎ
PHP:
$char = "\x{114E}";
echo $char; // Output: ᅎ
Ruby:
char = "\u{114E}"
puts char # Output: ᅎ
Rust:
let c = '\u{114E}';
println!("{}", c); // Output: ᅎ
Go:
char := '\u114E'
fmt.Printf("%c\n", char) // Output: ᅎ
CSS:
/* CSS content property */
.element::before {
content: "\00114E"; /* 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%85%8E
MD5:
a8030f9a3031071ee1f21f23e2b52970
SHA1:
5d81927f439447ae08734672f1814a7f782b0dcb
Base64:
4YWO