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