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