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