C:
char c = '\u1921';
printf("%c\n", c); // Output: ᤡ
JavaScript:
const char = '\u1921';
console.log(char); // Output: ᤡ
Java:
char c = '\u1921';
System.out.println(c); // Output: ᤡ
JSON:
{"text": "\u1921"} // Value: ᤡ
Python:
char = '\u1921'
print(char) # Output: ᤡ
Perl:
my $char = "\x{1921}";
print $char; # Output: ᤡ
PHP:
$char = "\x{1921}";
echo $char; // Output: ᤡ
Ruby:
char = "\u{1921}"
puts char # Output: ᤡ
Rust:
let c = '\u{1921}';
println!("{}", c); // Output: ᤡ
Go:
char := '\u1921'
fmt.Printf("%c\n", char) // Output: ᤡ
CSS:
/* CSS content property */
.element::before {
content: "\001921"; /* 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%A4%A1
MD5:
b464ccbb48a870149bffab5b0a05ec35
SHA1:
8f0459e0c9a4c99c4dee5b69592ff0f7a4bab242
Base64:
4aSh