C:
char c = '\u1381';
printf("%c\n", c); // Output: ᎁ
JavaScript:
const char = '\u1381';
console.log(char); // Output: ᎁ
Java:
char c = '\u1381';
System.out.println(c); // Output: ᎁ
JSON:
{"text": "\u1381"} // Value: ᎁ
Python:
char = '\u1381'
print(char) # Output: ᎁ
Perl:
my $char = "\x{1381}";
print $char; # Output: ᎁ
PHP:
$char = "\x{1381}";
echo $char; // Output: ᎁ
Ruby:
char = "\u{1381}"
puts char # Output: ᎁ
Rust:
let c = '\u{1381}';
println!("{}", c); // Output: ᎁ
Go:
char := '\u1381'
fmt.Printf("%c\n", char) // Output: ᎁ
CSS:
/* CSS content property */
.element::before {
content: "\001381"; /* 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%8E%81
MD5:
4daff5d4dc5276b3bb3d97f7a74305db
SHA1:
7c99a6d9f5a6c63379df917fc13c00db77dcc24c
Base64:
4Y6B