C:
char c = '\u1470';
printf("%c\n", c); // Output: ᑰ
JavaScript:
const char = '\u1470';
console.log(char); // Output: ᑰ
Java:
char c = '\u1470';
System.out.println(c); // Output: ᑰ
JSON:
{"text": "\u1470"} // Value: ᑰ
Python:
char = '\u1470'
print(char) # Output: ᑰ
Perl:
my $char = "\x{1470}";
print $char; # Output: ᑰ
PHP:
$char = "\x{1470}";
echo $char; // Output: ᑰ
Ruby:
char = "\u{1470}"
puts char # Output: ᑰ
Rust:
let c = '\u{1470}';
println!("{}", c); // Output: ᑰ
Go:
char := '\u1470'
fmt.Printf("%c\n", char) // Output: ᑰ
CSS:
/* CSS content property */
.element::before {
content: "\001470"; /* 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%91%B0
MD5:
bcf7b03dbd903b2e769e9226013e55c0
SHA1:
50a736dcffeef35e78ded50303c0744106ff8d78
Base64:
4ZGw