C:
char c = '\u0846';
printf("%c\n", c); // Output: ࡆ
JavaScript:
const char = '\u0846';
console.log(char); // Output: ࡆ
Java:
char c = '\u0846';
System.out.println(c); // Output: ࡆ
JSON:
{"text": "\u0846"} // Value: ࡆ
Python:
char = '\u0846'
print(char) # Output: ࡆ
Perl:
my $char = "\x{0846}";
print $char; # Output: ࡆ
PHP:
$char = "\x{0846}";
echo $char; // Output: ࡆ
Ruby:
char = "\u{0846}"
puts char # Output: ࡆ
Rust:
let c = '\u{846}';
println!("{}", c); // Output: ࡆ
Go:
char := '\u0846'
fmt.Printf("%c\n", char) // Output: ࡆ
CSS:
/* CSS content property */
.element::before {
content: "\000846"; /* 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%86
MD5:
93dbe6b3972d64e149763c8355aaf9a1
SHA1:
6115705a0df3e34c2833b568cf8b186865ad966b
Base64:
4KGG