C:
char c = '\u15EC';
printf("%c\n", c); // Output: ᗬ
JavaScript:
const char = '\u15EC';
console.log(char); // Output: ᗬ
Java:
char c = '\u15EC';
System.out.println(c); // Output: ᗬ
JSON:
{"text": "\u15EC"} // Value: ᗬ
Python:
char = '\u15EC'
print(char) # Output: ᗬ
Perl:
my $char = "\x{15EC}";
print $char; # Output: ᗬ
PHP:
$char = "\x{15EC}";
echo $char; // Output: ᗬ
Ruby:
char = "\u{15EC}"
puts char # Output: ᗬ
Rust:
let c = '\u{15EC}';
println!("{}", c); // Output: ᗬ
Go:
char := '\u15EC'
fmt.Printf("%c\n", char) // Output: ᗬ
CSS:
/* CSS content property */
.element::before {
content: "\0015EC"; /* 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%97%AC
MD5:
647bdc33c0afa53229c55f86039e0b62
SHA1:
85e4a929a0ec515e412e76b2edeb501604b6f3a3
Base64:
4Zes