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