C:
char c = '\u0821';
printf("%c\n", c); // Output: ࠡ
JavaScript:
const char = '\u0821';
console.log(char); // Output: ࠡ
Java:
char c = '\u0821';
System.out.println(c); // Output: ࠡ
JSON:
{"text": "\u0821"} // Value: ࠡ
Python:
char = '\u0821'
print(char) # Output: ࠡ
Perl:
my $char = "\x{0821}";
print $char; # Output: ࠡ
PHP:
$char = "\x{0821}";
echo $char; // Output: ࠡ
Ruby:
char = "\u{0821}"
puts char # Output: ࠡ
Rust:
let c = '\u{821}';
println!("{}", c); // Output: ࠡ
Go:
char := '\u0821'
fmt.Printf("%c\n", char) // Output: ࠡ
CSS:
/* CSS content property */
.element::before {
content: "\000821"; /* 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%A1
MD5:
3cd5b67a53dfd7747c52693a77a28652
SHA1:
cfd56310b0d698d7a0782e92c97fddc5cf05ff1c
Base64:
4KCh