C:
char c = '\u1B98';
printf("%c\n", c); // Output: ᮘ
JavaScript:
const char = '\u1B98';
console.log(char); // Output: ᮘ
Java:
char c = '\u1B98';
System.out.println(c); // Output: ᮘ
JSON:
{"text": "\u1B98"} // Value: ᮘ
Python:
char = '\u1B98'
print(char) # Output: ᮘ
Perl:
my $char = "\x{1B98}";
print $char; # Output: ᮘ
PHP:
$char = "\x{1B98}";
echo $char; // Output: ᮘ
Ruby:
char = "\u{1B98}"
puts char # Output: ᮘ
Rust:
let c = '\u{1B98}';
println!("{}", c); // Output: ᮘ
Go:
char := '\u1B98'
fmt.Printf("%c\n", char) // Output: ᮘ
CSS:
/* CSS content property */
.element::before {
content: "\001B98"; /* 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%AE%98
MD5:
e5e633bc827a718aee6fd99bd26ba556
SHA1:
3c3d84f95ce7faf5c2905d1fadc52030355662cd
Base64:
4a6Y