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