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