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