C:
char c = '\u1481';
printf("%c\n", c); // Output: ᒁ
JavaScript:
const char = '\u1481';
console.log(char); // Output: ᒁ
Java:
char c = '\u1481';
System.out.println(c); // Output: ᒁ
JSON:
{"text": "\u1481"} // Value: ᒁ
Python:
char = '\u1481'
print(char) # Output: ᒁ
Perl:
my $char = "\x{1481}";
print $char; # Output: ᒁ
PHP:
$char = "\x{1481}";
echo $char; // Output: ᒁ
Ruby:
char = "\u{1481}"
puts char # Output: ᒁ
Rust:
let c = '\u{1481}';
println!("{}", c); // Output: ᒁ
Go:
char := '\u1481'
fmt.Printf("%c\n", char) // Output: ᒁ
CSS:
/* CSS content property */
.element::before {
content: "\001481"; /* 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%81
MD5:
43eac14d189bec47d52d7c2c6c2f528f
SHA1:
582427e326e1142144c5af9de07876ea893f765f
Base64:
4ZKB