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