C:
char c = '\u15EB';
printf("%c\n", c); // Output: ᗫ
JavaScript:
const char = '\u15EB';
console.log(char); // Output: ᗫ
Java:
char c = '\u15EB';
System.out.println(c); // Output: ᗫ
JSON:
{"text": "\u15EB"} // Value: ᗫ
Python:
char = '\u15EB'
print(char) # Output: ᗫ
Perl:
my $char = "\x{15EB}";
print $char; # Output: ᗫ
PHP:
$char = "\x{15EB}";
echo $char; // Output: ᗫ
Ruby:
char = "\u{15EB}"
puts char # Output: ᗫ
Rust:
let c = '\u{15EB}';
println!("{}", c); // Output: ᗫ
Go:
char := '\u15EB'
fmt.Printf("%c\n", char) // Output: ᗫ
CSS:
/* CSS content property */
.element::before {
content: "\0015EB"; /* 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%AB
MD5:
f439bf99afe449b615ecbb677a48c7b9
SHA1:
14c1cf3ec84cc618660e61ef213bdac6c38d5d06
Base64:
4Zer