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