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