C:
char c = '\u1453';
printf("%c\n", c); // Output: ᑓ
JavaScript:
const char = '\u1453';
console.log(char); // Output: ᑓ
Java:
char c = '\u1453';
System.out.println(c); // Output: ᑓ
JSON:
{"text": "\u1453"} // Value: ᑓ
Python:
char = '\u1453'
print(char) # Output: ᑓ
Perl:
my $char = "\x{1453}";
print $char; # Output: ᑓ
PHP:
$char = "\x{1453}";
echo $char; // Output: ᑓ
Ruby:
char = "\u{1453}"
puts char # Output: ᑓ
Rust:
let c = '\u{1453}';
println!("{}", c); // Output: ᑓ
Go:
char := '\u1453'
fmt.Printf("%c\n", char) // Output: ᑓ
CSS:
/* CSS content property */
.element::before {
content: "\001453"; /* 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%91%93
MD5:
783335b4dc7b58fa064f9c4b03d3670c
SHA1:
210a6af36be894ed280a8a10e17da5db6d7cf303
Base64:
4ZGT