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