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