C:
char c = '\u1800';
printf("%c\n", c); // Output: ᠀
JavaScript:
const char = '\u1800';
console.log(char); // Output: ᠀
Java:
char c = '\u1800';
System.out.println(c); // Output: ᠀
JSON:
{"text": "\u1800"} // Value: ᠀
Python:
char = '\u1800'
print(char) # Output: ᠀
Perl:
my $char = "\x{1800}";
print $char; # Output: ᠀
PHP:
$char = "\x{1800}";
echo $char; // Output: ᠀
Ruby:
char = "\u{1800}"
puts char # Output: ᠀
Rust:
let c = '\u{1800}';
println!("{}", c); // Output: ᠀
Go:
char := '\u1800'
fmt.Printf("%c\n", char) // Output: ᠀
CSS:
/* CSS content property */
.element::before {
content: "\001800"; /* 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=%E1%A0%80
MD5:
b7c2618fcf4d3873102d3eb495af81f9
SHA1:
1b9c1b0965f76277cbd712ec812ef85eced86122
Base64:
4aCA