C:
char c = '\u0844';
printf("%c\n", c); // Output: ࡄ
JavaScript:
const char = '\u0844';
console.log(char); // Output: ࡄ
Java:
char c = '\u0844';
System.out.println(c); // Output: ࡄ
JSON:
{"text": "\u0844"} // Value: ࡄ
Python:
char = '\u0844'
print(char) # Output: ࡄ
Perl:
my $char = "\x{0844}";
print $char; # Output: ࡄ
PHP:
$char = "\x{0844}";
echo $char; // Output: ࡄ
Ruby:
char = "\u{0844}"
puts char # Output: ࡄ
Rust:
let c = '\u{844}';
println!("{}", c); // Output: ࡄ
Go:
char := '\u0844'
fmt.Printf("%c\n", char) // Output: ࡄ
CSS:
/* CSS content property */
.element::before {
content: "\000844"; /* 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%A1%84
MD5:
01f2d5f838791d21ef170c3c6b33e0d9
SHA1:
e2941a0a4e91183cc332f3ba83be35a04f58740c
Base64:
4KGE