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