C:
char c = '\u0853';
printf("%c\n", c); // Output: ࡓ
JavaScript:
const char = '\u0853';
console.log(char); // Output: ࡓ
Java:
char c = '\u0853';
System.out.println(c); // Output: ࡓ
JSON:
{"text": "\u0853"} // Value: ࡓ
Python:
char = '\u0853'
print(char) # Output: ࡓ
Perl:
my $char = "\x{0853}";
print $char; # Output: ࡓ
PHP:
$char = "\x{0853}";
echo $char; // Output: ࡓ
Ruby:
char = "\u{0853}"
puts char # Output: ࡓ
Rust:
let c = '\u{853}';
println!("{}", c); // Output: ࡓ
Go:
char := '\u0853'
fmt.Printf("%c\n", char) // Output: ࡓ
CSS:
/* CSS content property */
.element::before {
content: "\000853"; /* 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%93
MD5:
78ea78e68e16a0a70b0cedef8b589569
SHA1:
9fc0d931b1c185f7eb4b8e8e5d5e1ffd24bb128d
Base64:
4KGT