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