C:
char c = '\u1900';
printf("%c\n", c); // Output: ᤀ
JavaScript:
const char = '\u1900';
console.log(char); // Output: ᤀ
Java:
char c = '\u1900';
System.out.println(c); // Output: ᤀ
JSON:
{"text": "\u1900"} // Value: ᤀ
Python:
char = '\u1900'
print(char) # Output: ᤀ
Perl:
my $char = "\x{1900}";
print $char; # Output: ᤀ
PHP:
$char = "\x{1900}";
echo $char; // Output: ᤀ
Ruby:
char = "\u{1900}"
puts char # Output: ᤀ
Rust:
let c = '\u{1900}';
println!("{}", c); // Output: ᤀ
Go:
char := '\u1900'
fmt.Printf("%c\n", char) // Output: ᤀ
CSS:
/* CSS content property */
.element::before {
content: "\001900"; /* 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=%E1%A4%80
MD5:
ae151142825705d01ac85dff9c97f8ee
SHA1:
9a4821501557e40c6addb05194d16f50359c1d4c
Base64:
4aSA