C:
char c = '\uAB03';
printf("%c\n", c); // Output: ꬃ
JavaScript:
const char = '\uAB03';
console.log(char); // Output: ꬃ
Java:
char c = '\uAB03';
System.out.println(c); // Output: ꬃ
JSON:
{"text": "\uAB03"} // Value: ꬃ
Python:
char = '\uAB03'
print(char) # Output: ꬃ
Perl:
my $char = "\x{AB03}";
print $char; # Output: ꬃ
PHP:
$char = "\x{AB03}";
echo $char; // Output: ꬃ
Ruby:
char = "\u{AB03}"
puts char # Output: ꬃ
Rust:
let c = '\u{AB03}';
println!("{}", c); // Output: ꬃ
Go:
char := '\uAB03'
fmt.Printf("%c\n", char) // Output: ꬃ
CSS:
/* CSS content property */
.element::before {
content: "\00AB03"; /* 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=%EA%AC%83
MD5:
3784536e89c2d271f9b8c23ae0b604b2
SHA1:
6ecdbe2fc05ec371a00dd9689a6df6461d9fe18c
Base64:
6qyD