C:
char c = '\u0804';
printf("%c\n", c); // Output: ࠄ
JavaScript:
const char = '\u0804';
console.log(char); // Output: ࠄ
Java:
char c = '\u0804';
System.out.println(c); // Output: ࠄ
JSON:
{"text": "\u0804"} // Value: ࠄ
Python:
char = '\u0804'
print(char) # Output: ࠄ
Perl:
my $char = "\x{0804}";
print $char; # Output: ࠄ
PHP:
$char = "\x{0804}";
echo $char; // Output: ࠄ
Ruby:
char = "\u{0804}"
puts char # Output: ࠄ
Rust:
let c = '\u{804}';
println!("{}", c); // Output: ࠄ
Go:
char := '\u0804'
fmt.Printf("%c\n", char) // Output: ࠄ
CSS:
/* CSS content property */
.element::before {
content: "\000804"; /* 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=%E0%A0%84
MD5:
6346ffd949628393d15d32d6e19c9679
SHA1:
4dd2668eeb1a9c5cd0a45d563670fd17dc188482
Base64:
4KCE