C:
char c = '\uA3B3';
printf("%c\n", c); // Output: ꎳ
JavaScript:
const char = '\uA3B3';
console.log(char); // Output: ꎳ
Java:
char c = '\uA3B3';
System.out.println(c); // Output: ꎳ
JSON:
{"text": "\uA3B3"} // Value: ꎳ
Python:
char = '\uA3B3'
print(char) # Output: ꎳ
Perl:
my $char = "\x{A3B3}";
print $char; # Output: ꎳ
PHP:
$char = "\x{A3B3}";
echo $char; // Output: ꎳ
Ruby:
char = "\u{A3B3}"
puts char # Output: ꎳ
Rust:
let c = '\u{A3B3}';
println!("{}", c); // Output: ꎳ
Go:
char := '\uA3B3'
fmt.Printf("%c\n", char) // Output: ꎳ
CSS:
/* CSS content property */
.element::before {
content: "\00A3B3"; /* 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%8E%B3
MD5:
cf3a78011c18389f8ba17d81eabbe43e
SHA1:
f082ae4db2d36598a290affe5b8114655f556b29
Base64:
6o6z