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