C:
char c = '\u1A40';
printf("%c\n", c); // Output: ᩀ
JavaScript:
const char = '\u1A40';
console.log(char); // Output: ᩀ
Java:
char c = '\u1A40';
System.out.println(c); // Output: ᩀ
JSON:
{"text": "\u1A40"} // Value: ᩀ
Python:
char = '\u1A40'
print(char) # Output: ᩀ
Perl:
my $char = "\x{1A40}";
print $char; # Output: ᩀ
PHP:
$char = "\x{1A40}";
echo $char; // Output: ᩀ
Ruby:
char = "\u{1A40}"
puts char # Output: ᩀ
Rust:
let c = '\u{1A40}';
println!("{}", c); // Output: ᩀ
Go:
char := '\u1A40'
fmt.Printf("%c\n", char) // Output: ᩀ
CSS:
/* CSS content property */
.element::before {
content: "\001A40"; /* 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%A9%80
MD5:
11b614e2641428a8c666e64145fcc146
SHA1:
e262927cd4f1776fbd8513467b1c4c43e1d0cba2
Base64:
4amA