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