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