C:
char c = '\u0845';
printf("%c\n", c); // Output: ࡅ
JavaScript:
const char = '\u0845';
console.log(char); // Output: ࡅ
Java:
char c = '\u0845';
System.out.println(c); // Output: ࡅ
JSON:
{"text": "\u0845"} // Value: ࡅ
Python:
char = '\u0845'
print(char) # Output: ࡅ
Perl:
my $char = "\x{0845}";
print $char; # Output: ࡅ
PHP:
$char = "\x{0845}";
echo $char; // Output: ࡅ
Ruby:
char = "\u{0845}"
puts char # Output: ࡅ
Rust:
let c = '\u{845}';
println!("{}", c); // Output: ࡅ
Go:
char := '\u0845'
fmt.Printf("%c\n", char) // Output: ࡅ
CSS:
/* CSS content property */
.element::before {
content: "\000845"; /* 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%85
MD5:
423b246a12f2c72dbf6177adf4ca0452
SHA1:
5028ed89897cd562d93a414c9689cf77d6e1c763
Base64:
4KGF