C:
char c = '\u1670';
printf("%c\n", c); // Output: ᙰ
JavaScript:
const char = '\u1670';
console.log(char); // Output: ᙰ
Java:
char c = '\u1670';
System.out.println(c); // Output: ᙰ
JSON:
{"text": "\u1670"} // Value: ᙰ
Python:
char = '\u1670'
print(char) # Output: ᙰ
Perl:
my $char = "\x{1670}";
print $char; # Output: ᙰ
PHP:
$char = "\x{1670}";
echo $char; // Output: ᙰ
Ruby:
char = "\u{1670}"
puts char # Output: ᙰ
Rust:
let c = '\u{1670}';
println!("{}", c); // Output: ᙰ
Go:
char := '\u1670'
fmt.Printf("%c\n", char) // Output: ᙰ
CSS:
/* CSS content property */
.element::before {
content: "\001670"; /* 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%99%B0
MD5:
32a7ff9d60b12b1674014b0ab40e743b
SHA1:
db99332d3b38cc66a5cad380201820c42c9a4138
Base64:
4Zmw