C:
char c = '\u1456';
printf("%c\n", c); // Output: ᑖ
JavaScript:
const char = '\u1456';
console.log(char); // Output: ᑖ
Java:
char c = '\u1456';
System.out.println(c); // Output: ᑖ
JSON:
{"text": "\u1456"} // Value: ᑖ
Python:
char = '\u1456'
print(char) # Output: ᑖ
Perl:
my $char = "\x{1456}";
print $char; # Output: ᑖ
PHP:
$char = "\x{1456}";
echo $char; // Output: ᑖ
Ruby:
char = "\u{1456}"
puts char # Output: ᑖ
Rust:
let c = '\u{1456}';
println!("{}", c); // Output: ᑖ
Go:
char := '\u1456'
fmt.Printf("%c\n", char) // Output: ᑖ
CSS:
/* CSS content property */
.element::before {
content: "\001456"; /* 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%96
MD5:
5aca93032ef521111e66b2cb42a6572c
SHA1:
a7f469d5f4b798bfe5ab37c508cd35ebbbfc5405
Base64:
4ZGW