C:
char c = '\u0851';
printf("%c\n", c); // Output: ࡑ
JavaScript:
const char = '\u0851';
console.log(char); // Output: ࡑ
Java:
char c = '\u0851';
System.out.println(c); // Output: ࡑ
JSON:
{"text": "\u0851"} // Value: ࡑ
Python:
char = '\u0851'
print(char) # Output: ࡑ
Perl:
my $char = "\x{0851}";
print $char; # Output: ࡑ
PHP:
$char = "\x{0851}";
echo $char; // Output: ࡑ
Ruby:
char = "\u{0851}"
puts char # Output: ࡑ
Rust:
let c = '\u{851}';
println!("{}", c); // Output: ࡑ
Go:
char := '\u0851'
fmt.Printf("%c\n", char) // Output: ࡑ
CSS:
/* CSS content property */
.element::before {
content: "\000851"; /* 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%91
MD5:
03a0aa5d222bee917ab7f73409eeb82b
SHA1:
3f62f6c822e7ef18f9d748c3f0727a309df4d4f4
Base64:
4KGR