C:
char c = '\u0823';
printf("%c\n", c); // Output: ࠣ
JavaScript:
const char = '\u0823';
console.log(char); // Output: ࠣ
Java:
char c = '\u0823';
System.out.println(c); // Output: ࠣ
JSON:
{"text": "\u0823"} // Value: ࠣ
Python:
char = '\u0823'
print(char) # Output: ࠣ
Perl:
my $char = "\x{0823}";
print $char; # Output: ࠣ
PHP:
$char = "\x{0823}";
echo $char; // Output: ࠣ
Ruby:
char = "\u{0823}"
puts char # Output: ࠣ
Rust:
let c = '\u{823}';
println!("{}", c); // Output: ࠣ
Go:
char := '\u0823'
fmt.Printf("%c\n", char) // Output: ࠣ
CSS:
/* CSS content property */
.element::before {
content: "\000823"; /* 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%A3
MD5:
2f5ebacc6f60fbd4188cbcdcdce60b54
SHA1:
70b245c873f7ae339d76a9ba9bf4d58a6c36f46c
Base64:
4KCj