C:
char c = '\u0800';
printf("%c\n", c); // Output: ࠀ
JavaScript:
const char = '\u0800';
console.log(char); // Output: ࠀ
Java:
char c = '\u0800';
System.out.println(c); // Output: ࠀ
JSON:
{"text": "\u0800"} // Value: ࠀ
Python:
char = '\u0800'
print(char) # Output: ࠀ
Perl:
my $char = "\x{0800}";
print $char; # Output: ࠀ
PHP:
$char = "\x{0800}";
echo $char; // Output: ࠀ
Ruby:
char = "\u{0800}"
puts char # Output: ࠀ
Rust:
let c = '\u{800}';
println!("{}", c); // Output: ࠀ
Go:
char := '\u0800'
fmt.Printf("%c\n", char) // Output: ࠀ
CSS:
/* CSS content property */
.element::before {
content: "\000800"; /* 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%80
MD5:
735e3d47042a26d827aafa2fde7bc1be
SHA1:
f6fe92b35324738494037dd5f9af28519fc08121
Base64:
4KCA