C:
char c = '\u1581';
printf("%c\n", c); // Output: ᖁ
JavaScript:
const char = '\u1581';
console.log(char); // Output: ᖁ
Java:
char c = '\u1581';
System.out.println(c); // Output: ᖁ
JSON:
{"text": "\u1581"} // Value: ᖁ
Python:
char = '\u1581'
print(char) # Output: ᖁ
Perl:
my $char = "\x{1581}";
print $char; # Output: ᖁ
PHP:
$char = "\x{1581}";
echo $char; // Output: ᖁ
Ruby:
char = "\u{1581}"
puts char # Output: ᖁ
Rust:
let c = '\u{1581}';
println!("{}", c); // Output: ᖁ
Go:
char := '\u1581'
fmt.Printf("%c\n", char) // Output: ᖁ
CSS:
/* CSS content property */
.element::before {
content: "\001581"; /* 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%96%81
MD5:
3970d0c2834a258c27003cceb36d7c3e
SHA1:
dc6034679a40e5896098332d1268fe8002959393
Base64:
4ZaB