C:
char c = '\u0850';
printf("%c\n", c); // Output: ࡐ
JavaScript:
const char = '\u0850';
console.log(char); // Output: ࡐ
Java:
char c = '\u0850';
System.out.println(c); // Output: ࡐ
JSON:
{"text": "\u0850"} // Value: ࡐ
Python:
char = '\u0850'
print(char) # Output: ࡐ
Perl:
my $char = "\x{0850}";
print $char; # Output: ࡐ
PHP:
$char = "\x{0850}";
echo $char; // Output: ࡐ
Ruby:
char = "\u{0850}"
puts char # Output: ࡐ
Rust:
let c = '\u{850}';
println!("{}", c); // Output: ࡐ
Go:
char := '\u0850'
fmt.Printf("%c\n", char) // Output: ࡐ
CSS:
/* CSS content property */
.element::before {
content: "\000850"; /* 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%90
MD5:
39b1538f7c253239d764a153075ca6fc
SHA1:
f73c3c376912337b7246988d290b189543e1b7f2
Base64:
4KGQ