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