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