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