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