C:
char c = '\u1529';
printf("%c\n", c); // Output: ᔩ
JavaScript:
const char = '\u1529';
console.log(char); // Output: ᔩ
Java:
char c = '\u1529';
System.out.println(c); // Output: ᔩ
JSON:
{"text": "\u1529"} // Value: ᔩ
Python:
char = '\u1529'
print(char) # Output: ᔩ
Perl:
my $char = "\x{1529}";
print $char; # Output: ᔩ
PHP:
$char = "\x{1529}";
echo $char; // Output: ᔩ
Ruby:
char = "\u{1529}"
puts char # Output: ᔩ
Rust:
let c = '\u{1529}';
println!("{}", c); // Output: ᔩ
Go:
char := '\u1529'
fmt.Printf("%c\n", char) // Output: ᔩ
CSS:
/* CSS content property */
.element::before {
content: "\001529"; /* 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%A9
MD5:
dbe0a24157eb9941e997fa8a965deab3
SHA1:
1f833086432d858c6fc212854c21af5d64473b1f
Base64:
4ZSp