C:
char c = '\u1471';
printf("%c\n", c); // Output: ᑱ
JavaScript:
const char = '\u1471';
console.log(char); // Output: ᑱ
Java:
char c = '\u1471';
System.out.println(c); // Output: ᑱ
JSON:
{"text": "\u1471"} // Value: ᑱ
Python:
char = '\u1471'
print(char) # Output: ᑱ
Perl:
my $char = "\x{1471}";
print $char; # Output: ᑱ
PHP:
$char = "\x{1471}";
echo $char; // Output: ᑱ
Ruby:
char = "\u{1471}"
puts char # Output: ᑱ
Rust:
let c = '\u{1471}';
println!("{}", c); // Output: ᑱ
Go:
char := '\u1471'
fmt.Printf("%c\n", char) // Output: ᑱ
CSS:
/* CSS content property */
.element::before {
content: "\001471"; /* 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%B1
MD5:
c7c05145510dcae3839072e7b7668824
SHA1:
6fa1fb67cc0dbbc922e8fbc9599d47a88ba09e3a
Base64:
4ZGx