C:
char c = '\u1B80';
printf("%c\n", c); // Output: ᮀ
JavaScript:
const char = '\u1B80';
console.log(char); // Output: ᮀ
Java:
char c = '\u1B80';
System.out.println(c); // Output: ᮀ
JSON:
{"text": "\u1B80"} // Value: ᮀ
Python:
char = '\u1B80'
print(char) # Output: ᮀ
Perl:
my $char = "\x{1B80}";
print $char; # Output: ᮀ
PHP:
$char = "\x{1B80}";
echo $char; // Output: ᮀ
Ruby:
char = "\u{1B80}"
puts char # Output: ᮀ
Rust:
let c = '\u{1B80}';
println!("{}", c); // Output: ᮀ
Go:
char := '\u1B80'
fmt.Printf("%c\n", char) // Output: ᮀ
CSS:
/* CSS content property */
.element::before {
content: "\001B80"; /* 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%AE%80
MD5:
3ebb814a01ad54b008f9d5256e8129e7
SHA1:
c81bbd6f694d6a8ec7f3b5a48ee22f0e7e424239
Base64:
4a6A