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