C:
char c = '\u0820';
printf("%c\n", c); // Output: ࠠ
JavaScript:
const char = '\u0820';
console.log(char); // Output: ࠠ
Java:
char c = '\u0820';
System.out.println(c); // Output: ࠠ
JSON:
{"text": "\u0820"} // Value: ࠠ
Python:
char = '\u0820'
print(char) # Output: ࠠ
Perl:
my $char = "\x{0820}";
print $char; # Output: ࠠ
PHP:
$char = "\x{0820}";
echo $char; // Output: ࠠ
Ruby:
char = "\u{0820}"
puts char # Output: ࠠ
Rust:
let c = '\u{820}';
println!("{}", c); // Output: ࠠ
Go:
char := '\u0820'
fmt.Printf("%c\n", char) // Output: ࠠ
CSS:
/* CSS content property */
.element::before {
content: "\000820"; /* 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%A0
MD5:
4aa4f4b52d1ae86b04f397c116b7ca72
SHA1:
7178d64f84247d2528715d3cd68139bc9187e418
Base64:
4KCg