C:
char c = '\u1491';
printf("%c\n", c); // Output: ᒑ
JavaScript:
const char = '\u1491';
console.log(char); // Output: ᒑ
Java:
char c = '\u1491';
System.out.println(c); // Output: ᒑ
JSON:
{"text": "\u1491"} // Value: ᒑ
Python:
char = '\u1491'
print(char) # Output: ᒑ
Perl:
my $char = "\x{1491}";
print $char; # Output: ᒑ
PHP:
$char = "\x{1491}";
echo $char; // Output: ᒑ
Ruby:
char = "\u{1491}"
puts char # Output: ᒑ
Rust:
let c = '\u{1491}';
println!("{}", c); // Output: ᒑ
Go:
char := '\u1491'
fmt.Printf("%c\n", char) // Output: ᒑ
CSS:
/* CSS content property */
.element::before {
content: "\001491"; /* 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%92%91
MD5:
fa60ee6e165d56a22dfff76ab8579e5d
SHA1:
3ea790264b60094e87b50409cac8100142457ee0
Base64:
4ZKR