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