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