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