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