C:
char c = '\u0857';
printf("%c\n", c); // Output: ࡗ
JavaScript:
const char = '\u0857';
console.log(char); // Output: ࡗ
Java:
char c = '\u0857';
System.out.println(c); // Output: ࡗ
JSON:
{"text": "\u0857"} // Value: ࡗ
Python:
char = '\u0857'
print(char) # Output: ࡗ
Perl:
my $char = "\x{0857}";
print $char; # Output: ࡗ
PHP:
$char = "\x{0857}";
echo $char; // Output: ࡗ
Ruby:
char = "\u{0857}"
puts char # Output: ࡗ
Rust:
let c = '\u{857}';
println!("{}", c); // Output: ࡗ
Go:
char := '\u0857'
fmt.Printf("%c\n", char) // Output: ࡗ
CSS:
/* CSS content property */
.element::before {
content: "\000857"; /* 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%97
MD5:
13664ef958f3f0d1ae1202be835cc2f0
SHA1:
159715f650f823416fda963eb28f44a0ee585fb3
Base64:
4KGX