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