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