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