C:
char c = '\u1525';
printf("%c\n", c); // Output: ᔥ
JavaScript:
const char = '\u1525';
console.log(char); // Output: ᔥ
Java:
char c = '\u1525';
System.out.println(c); // Output: ᔥ
JSON:
{"text": "\u1525"} // Value: ᔥ
Python:
char = '\u1525'
print(char) # Output: ᔥ
Perl:
my $char = "\x{1525}";
print $char; # Output: ᔥ
PHP:
$char = "\x{1525}";
echo $char; // Output: ᔥ
Ruby:
char = "\u{1525}"
puts char # Output: ᔥ
Rust:
let c = '\u{1525}';
println!("{}", c); // Output: ᔥ
Go:
char := '\u1525'
fmt.Printf("%c\n", char) // Output: ᔥ
CSS:
/* CSS content property */
.element::before {
content: "\001525"; /* 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%A5
MD5:
8ada1874ae6d4634253323b58a4b3a02
SHA1:
14594a53e4e3b39b106beac1ec525e398b5abe15
Base64:
4ZSl