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