C:
char c = '\u1498';
printf("%c\n", c); // Output: ᒘ
JavaScript:
const char = '\u1498';
console.log(char); // Output: ᒘ
Java:
char c = '\u1498';
System.out.println(c); // Output: ᒘ
JSON:
{"text": "\u1498"} // Value: ᒘ
Python:
char = '\u1498'
print(char) # Output: ᒘ
Perl:
my $char = "\x{1498}";
print $char; # Output: ᒘ
PHP:
$char = "\x{1498}";
echo $char; // Output: ᒘ
Ruby:
char = "\u{1498}"
puts char # Output: ᒘ
Rust:
let c = '\u{1498}';
println!("{}", c); // Output: ᒘ
Go:
char := '\u1498'
fmt.Printf("%c\n", char) // Output: ᒘ
CSS:
/* CSS content property */
.element::before {
content: "\001498"; /* 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%92%98
MD5:
3950d4453be28c376e7d0ebca89dfa93
SHA1:
42c7583b42baf458b9d3db3e91269d88da963a34
Base64:
4ZKY