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