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