C:
char c = '\u1504';
printf("%c\n", c); // Output: ᔄ
JavaScript:
const char = '\u1504';
console.log(char); // Output: ᔄ
Java:
char c = '\u1504';
System.out.println(c); // Output: ᔄ
JSON:
{"text": "\u1504"} // Value: ᔄ
Python:
char = '\u1504'
print(char) # Output: ᔄ
Perl:
my $char = "\x{1504}";
print $char; # Output: ᔄ
PHP:
$char = "\x{1504}";
echo $char; // Output: ᔄ
Ruby:
char = "\u{1504}"
puts char # Output: ᔄ
Rust:
let c = '\u{1504}';
println!("{}", c); // Output: ᔄ
Go:
char := '\u1504'
fmt.Printf("%c\n", char) // Output: ᔄ
CSS:
/* CSS content property */
.element::before {
content: "\001504"; /* 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%84
MD5:
60a73425485ce69321740d0d48ac0cbb
SHA1:
989809be5db76814f3daff2d96c41e984fff087e
Base64:
4ZSE