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