C:
char c = '\u1521';
printf("%c\n", c); // Output: ᔡ
JavaScript:
const char = '\u1521';
console.log(char); // Output: ᔡ
Java:
char c = '\u1521';
System.out.println(c); // Output: ᔡ
JSON:
{"text": "\u1521"} // Value: ᔡ
Python:
char = '\u1521'
print(char) # Output: ᔡ
Perl:
my $char = "\x{1521}";
print $char; # Output: ᔡ
PHP:
$char = "\x{1521}";
echo $char; // Output: ᔡ
Ruby:
char = "\u{1521}"
puts char # Output: ᔡ
Rust:
let c = '\u{1521}';
println!("{}", c); // Output: ᔡ
Go:
char := '\u1521'
fmt.Printf("%c\n", char) // Output: ᔡ
CSS:
/* CSS content property */
.element::before {
content: "\001521"; /* 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%94%A1
MD5:
2f22029170634e10d42c7102cf12a0dd
SHA1:
a1354933b691d5e11c6b1568718e5887bcfd4a5a
Base64:
4ZSh