C:
char c = '\u0852';
printf("%c\n", c); // Output: ࡒ
JavaScript:
const char = '\u0852';
console.log(char); // Output: ࡒ
Java:
char c = '\u0852';
System.out.println(c); // Output: ࡒ
JSON:
{"text": "\u0852"} // Value: ࡒ
Python:
char = '\u0852'
print(char) # Output: ࡒ
Perl:
my $char = "\x{0852}";
print $char; # Output: ࡒ
PHP:
$char = "\x{0852}";
echo $char; // Output: ࡒ
Ruby:
char = "\u{0852}"
puts char # Output: ࡒ
Rust:
let c = '\u{852}';
println!("{}", c); // Output: ࡒ
Go:
char := '\u0852'
fmt.Printf("%c\n", char) // Output: ࡒ
CSS:
/* CSS content property */
.element::before {
content: "\000852"; /* 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%92
MD5:
1941fdebab18c7ced8586ce74d6fce72
SHA1:
de4d88943b15d9ea99c4c00e4616808beedef1de
Base64:
4KGS