C:
char c = '\u1170';
printf("%c\n", c); // Output: ᅰ
JavaScript:
const char = '\u1170';
console.log(char); // Output: ᅰ
Java:
char c = '\u1170';
System.out.println(c); // Output: ᅰ
JSON:
{"text": "\u1170"} // Value: ᅰ
Python:
char = '\u1170'
print(char) # Output: ᅰ
Perl:
my $char = "\x{1170}";
print $char; # Output: ᅰ
PHP:
$char = "\x{1170}";
echo $char; // Output: ᅰ
Ruby:
char = "\u{1170}"
puts char # Output: ᅰ
Rust:
let c = '\u{1170}';
println!("{}", c); // Output: ᅰ
Go:
char := '\u1170'
fmt.Printf("%c\n", char) // Output: ᅰ
CSS:
/* CSS content property */
.element::before {
content: "\001170"; /* 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%85%B0
MD5:
9ee1570440a9da34b204281e6768f4d1
SHA1:
b803de6ca57b0da5f413cd153f3f8f0690bd0251
Base64:
4YWw