C:
char c = '\u1524';
printf("%c\n", c); // Output: ᔤ
JavaScript:
const char = '\u1524';
console.log(char); // Output: ᔤ
Java:
char c = '\u1524';
System.out.println(c); // Output: ᔤ
JSON:
{"text": "\u1524"} // Value: ᔤ
Python:
char = '\u1524'
print(char) # Output: ᔤ
Perl:
my $char = "\x{1524}";
print $char; # Output: ᔤ
PHP:
$char = "\x{1524}";
echo $char; // Output: ᔤ
Ruby:
char = "\u{1524}"
puts char # Output: ᔤ
Rust:
let c = '\u{1524}';
println!("{}", c); // Output: ᔤ
Go:
char := '\u1524'
fmt.Printf("%c\n", char) // Output: ᔤ
CSS:
/* CSS content property */
.element::before {
content: "\001524"; /* 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%A4
MD5:
ab23832ff77b9ba87943745086f80cc1
SHA1:
d7d60bc74134ed779abede4672528ae19c7b6b11
Base64:
4ZSk