C:
char c = '\uA24E';
printf("%c\n", c); // Output: ꉎ
JavaScript:
const char = '\uA24E';
console.log(char); // Output: ꉎ
Java:
char c = '\uA24E';
System.out.println(c); // Output: ꉎ
JSON:
{"text": "\uA24E"} // Value: ꉎ
Python:
char = '\uA24E'
print(char) # Output: ꉎ
Perl:
my $char = "\x{A24E}";
print $char; # Output: ꉎ
PHP:
$char = "\x{A24E}";
echo $char; // Output: ꉎ
Ruby:
char = "\u{A24E}"
puts char # Output: ꉎ
Rust:
let c = '\u{A24E}';
println!("{}", c); // Output: ꉎ
Go:
char := '\uA24E'
fmt.Printf("%c\n", char) // Output: ꉎ
CSS:
/* CSS content property */
.element::before {
content: "\00A24E"; /* 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%89%8E
MD5:
95fdfa0c367909fb55728d20aeadec45
SHA1:
168c530f4f94cbe3da16261e0cdee33f54c342d4
Base64:
6omO