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