C:
char c = '\u14B0';
printf("%c\n", c); // Output: ᒰ
JavaScript:
const char = '\u14B0';
console.log(char); // Output: ᒰ
Java:
char c = '\u14B0';
System.out.println(c); // Output: ᒰ
JSON:
{"text": "\u14B0"} // Value: ᒰ
Python:
char = '\u14B0'
print(char) # Output: ᒰ
Perl:
my $char = "\x{14B0}";
print $char; # Output: ᒰ
PHP:
$char = "\x{14B0}";
echo $char; // Output: ᒰ
Ruby:
char = "\u{14B0}"
puts char # Output: ᒰ
Rust:
let c = '\u{14B0}';
println!("{}", c); // Output: ᒰ
Go:
char := '\u14B0'
fmt.Printf("%c\n", char) // Output: ᒰ
CSS:
/* CSS content property */
.element::before {
content: "\0014B0"; /* 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%92%B0
MD5:
d6ebdcb71d0322c8e3fd8cef76342c08
SHA1:
1247f54be6ad009cecf87dc920feca3513118cf3
Base64:
4ZKw