C:
char c = '\u0822';
printf("%c\n", c); // Output: ࠢ
JavaScript:
const char = '\u0822';
console.log(char); // Output: ࠢ
Java:
char c = '\u0822';
System.out.println(c); // Output: ࠢ
JSON:
{"text": "\u0822"} // Value: ࠢ
Python:
char = '\u0822'
print(char) # Output: ࠢ
Perl:
my $char = "\x{0822}";
print $char; # Output: ࠢ
PHP:
$char = "\x{0822}";
echo $char; // Output: ࠢ
Ruby:
char = "\u{0822}"
puts char # Output: ࠢ
Rust:
let c = '\u{822}';
println!("{}", c); // Output: ࠢ
Go:
char := '\u0822'
fmt.Printf("%c\n", char) // Output: ࠢ
CSS:
/* CSS content property */
.element::before {
content: "\000822"; /* 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%A0%A2
MD5:
e23705357f93d2e90e318fe71b5ec110
SHA1:
d7ff17dd34f97b5811d0245c4e3b129fb3c50b81
Base64:
4KCi