C:
char c = '\u1919';
printf("%c\n", c); // Output: ᤙ
JavaScript:
const char = '\u1919';
console.log(char); // Output: ᤙ
Java:
char c = '\u1919';
System.out.println(c); // Output: ᤙ
JSON:
{"text": "\u1919"} // Value: ᤙ
Python:
char = '\u1919'
print(char) # Output: ᤙ
Perl:
my $char = "\x{1919}";
print $char; # Output: ᤙ
PHP:
$char = "\x{1919}";
echo $char; // Output: ᤙ
Ruby:
char = "\u{1919}"
puts char # Output: ᤙ
Rust:
let c = '\u{1919}';
println!("{}", c); // Output: ᤙ
Go:
char := '\u1919'
fmt.Printf("%c\n", char) // Output: ᤙ
CSS:
/* CSS content property */
.element::before {
content: "\001919"; /* 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%99
MD5:
69300f0cde7eb4f30d794dc8a1630a0e
SHA1:
ef292b97fc0778ff6eeae2fa4e586811a24a3f3c
Base64:
4aSZ