C:
char c = '\u15DA';
printf("%c\n", c); // Output: ᗚ
JavaScript:
const char = '\u15DA';
console.log(char); // Output: ᗚ
Java:
char c = '\u15DA';
System.out.println(c); // Output: ᗚ
JSON:
{"text": "\u15DA"} // Value: ᗚ
Python:
char = '\u15DA'
print(char) # Output: ᗚ
Perl:
my $char = "\x{15DA}";
print $char; # Output: ᗚ
PHP:
$char = "\x{15DA}";
echo $char; // Output: ᗚ
Ruby:
char = "\u{15DA}"
puts char # Output: ᗚ
Rust:
let c = '\u{15DA}';
println!("{}", c); // Output: ᗚ
Go:
char := '\u15DA'
fmt.Printf("%c\n", char) // Output: ᗚ
CSS:
/* CSS content property */
.element::before {
content: "\0015DA"; /* 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%9A
MD5:
3fd9df88a4329b72d27af9876e9ddba3
SHA1:
71675bbb711098e2cf562f2875e53d5f580bcc8a
Base64:
4Zea