C:
char c = '\u1549';
printf("%c\n", c); // Output: ᕉ
JavaScript:
const char = '\u1549';
console.log(char); // Output: ᕉ
Java:
char c = '\u1549';
System.out.println(c); // Output: ᕉ
JSON:
{"text": "\u1549"} // Value: ᕉ
Python:
char = '\u1549'
print(char) # Output: ᕉ
Perl:
my $char = "\x{1549}";
print $char; # Output: ᕉ
PHP:
$char = "\x{1549}";
echo $char; // Output: ᕉ
Ruby:
char = "\u{1549}"
puts char # Output: ᕉ
Rust:
let c = '\u{1549}';
println!("{}", c); // Output: ᕉ
Go:
char := '\u1549'
fmt.Printf("%c\n", char) // Output: ᕉ
CSS:
/* CSS content property */
.element::before {
content: "\001549"; /* 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%89
MD5:
a2a25eed00b45f97e2a53c00f12c4c56
SHA1:
10efdc0230afd603866ff2002044dde85574e13e
Base64:
4ZWJ