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