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