C:
char c = '\u1545';
printf("%c\n", c); // Output: ᕅ
JavaScript:
const char = '\u1545';
console.log(char); // Output: ᕅ
Java:
char c = '\u1545';
System.out.println(c); // Output: ᕅ
JSON:
{"text": "\u1545"} // Value: ᕅ
Python:
char = '\u1545'
print(char) # Output: ᕅ
Perl:
my $char = "\x{1545}";
print $char; # Output: ᕅ
PHP:
$char = "\x{1545}";
echo $char; // Output: ᕅ
Ruby:
char = "\u{1545}"
puts char # Output: ᕅ
Rust:
let c = '\u{1545}';
println!("{}", c); // Output: ᕅ
Go:
char := '\u1545'
fmt.Printf("%c\n", char) // Output: ᕅ
CSS:
/* CSS content property */
.element::before {
content: "\001545"; /* 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%95%85
MD5:
94bb2580ad657614c03dad17b2bde1dd
SHA1:
bde2509f6af3600772825c9a8da9ca931a3f5b39
Base64:
4ZWF