C:
char c = '\u1190';
printf("%c\n", c); // Output: ᆐ
JavaScript:
const char = '\u1190';
console.log(char); // Output: ᆐ
Java:
char c = '\u1190';
System.out.println(c); // Output: ᆐ
JSON:
{"text": "\u1190"} // Value: ᆐ
Python:
char = '\u1190'
print(char) # Output: ᆐ
Perl:
my $char = "\x{1190}";
print $char; # Output: ᆐ
PHP:
$char = "\x{1190}";
echo $char; // Output: ᆐ
Ruby:
char = "\u{1190}"
puts char # Output: ᆐ
Rust:
let c = '\u{1190}';
println!("{}", c); // Output: ᆐ
Go:
char := '\u1190'
fmt.Printf("%c\n", char) // Output: ᆐ
CSS:
/* CSS content property */
.element::before {
content: "\001190"; /* 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%86%90
MD5:
9ace7a2496664bb66a7d056bb047df3d
SHA1:
96014db1ccfd8c9e970e93fadb3fb6795fbb67da
Base64:
4YaQ