C:
char c = '\uA44E';
printf("%c\n", c); // Output: ꑎ
JavaScript:
const char = '\uA44E';
console.log(char); // Output: ꑎ
Java:
char c = '\uA44E';
System.out.println(c); // Output: ꑎ
JSON:
{"text": "\uA44E"} // Value: ꑎ
Python:
char = '\uA44E'
print(char) # Output: ꑎ
Perl:
my $char = "\x{A44E}";
print $char; # Output: ꑎ
PHP:
$char = "\x{A44E}";
echo $char; // Output: ꑎ
Ruby:
char = "\u{A44E}"
puts char # Output: ꑎ
Rust:
let c = '\u{A44E}';
println!("{}", c); // Output: ꑎ
Go:
char := '\uA44E'
fmt.Printf("%c\n", char) // Output: ꑎ
CSS:
/* CSS content property */
.element::before {
content: "\00A44E"; /* 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%91%8E
MD5:
89741c69c982ba36e0c8dc913a02cea2
SHA1:
3ac4709ebf22e548faf83babc1416eb4b4eb3a89
Base64:
6pGO