C:
char c = '\u0854';
printf("%c\n", c); // Output: ࡔ
JavaScript:
const char = '\u0854';
console.log(char); // Output: ࡔ
Java:
char c = '\u0854';
System.out.println(c); // Output: ࡔ
JSON:
{"text": "\u0854"} // Value: ࡔ
Python:
char = '\u0854'
print(char) # Output: ࡔ
Perl:
my $char = "\x{0854}";
print $char; # Output: ࡔ
PHP:
$char = "\x{0854}";
echo $char; // Output: ࡔ
Ruby:
char = "\u{0854}"
puts char # Output: ࡔ
Rust:
let c = '\u{854}';
println!("{}", c); // Output: ࡔ
Go:
char := '\u0854'
fmt.Printf("%c\n", char) // Output: ࡔ
CSS:
/* CSS content property */
.element::before {
content: "\000854"; /* 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%94
MD5:
14ed9b27103616115357764ba692b784
SHA1:
127099df359ffa6ee614068654fd296e2acd8eb5
Base64:
4KGU