C:
char c = '\uA50E';
printf("%c\n", c); // Output: ꔎ
JavaScript:
const char = '\uA50E';
console.log(char); // Output: ꔎ
Java:
char c = '\uA50E';
System.out.println(c); // Output: ꔎ
JSON:
{"text": "\uA50E"} // Value: ꔎ
Python:
char = '\uA50E'
print(char) # Output: ꔎ
Perl:
my $char = "\x{A50E}";
print $char; # Output: ꔎ
PHP:
$char = "\x{A50E}";
echo $char; // Output: ꔎ
Ruby:
char = "\u{A50E}"
puts char # Output: ꔎ
Rust:
let c = '\u{A50E}';
println!("{}", c); // Output: ꔎ
Go:
char := '\uA50E'
fmt.Printf("%c\n", char) // Output: ꔎ
CSS:
/* CSS content property */
.element::before {
content: "\00A50E"; /* 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=%EA%94%8E
MD5:
0b03d20cc7ebc7def84d4f58a9143df5
SHA1:
8821db64b31f4c3628670bd018da4fd85ae78a2a
Base64:
6pSO