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