C:
char c = '\uA0A6';
printf("%c\n", c); // Output: ꂦ
JavaScript:
const char = '\uA0A6';
console.log(char); // Output: ꂦ
Java:
char c = '\uA0A6';
System.out.println(c); // Output: ꂦ
JSON:
{"text": "\uA0A6"} // Value: ꂦ
Python:
char = '\uA0A6'
print(char) # Output: ꂦ
Perl:
my $char = "\x{A0A6}";
print $char; # Output: ꂦ
PHP:
$char = "\x{A0A6}";
echo $char; // Output: ꂦ
Ruby:
char = "\u{A0A6}"
puts char # Output: ꂦ
Rust:
let c = '\u{A0A6}';
println!("{}", c); // Output: ꂦ
Go:
char := '\uA0A6'
fmt.Printf("%c\n", char) // Output: ꂦ
CSS:
/* CSS content property */
.element::before {
content: "\00A0A6"; /* 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%82%A6
MD5:
e5808f79c835366490183ee7781f7143
SHA1:
48706deb534c807ee55f09a176236e9d47e9cf0d
Base64:
6oKm