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