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