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