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