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