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