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