C:
char c = '\u1528';
printf("%c\n", c); // Output: ᔨ
JavaScript:
const char = '\u1528';
console.log(char); // Output: ᔨ
Java:
char c = '\u1528';
System.out.println(c); // Output: ᔨ
JSON:
{"text": "\u1528"} // Value: ᔨ
Python:
char = '\u1528'
print(char) # Output: ᔨ
Perl:
my $char = "\x{1528}";
print $char; # Output: ᔨ
PHP:
$char = "\x{1528}";
echo $char; // Output: ᔨ
Ruby:
char = "\u{1528}"
puts char # Output: ᔨ
Rust:
let c = '\u{1528}';
println!("{}", c); // Output: ᔨ
Go:
char := '\u1528'
fmt.Printf("%c\n", char) // Output: ᔨ
CSS:
/* CSS content property */
.element::before {
content: "\001528"; /* 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%A8
MD5:
c3781ef2d3bc8da48d947521ab4b910e
SHA1:
4455e6f8c827008a7d628a7045bdddeae80a5123
Base64:
4ZSo