C:
char c = '\u19B8';
printf("%c\n", c); // Output: ᦸ
JavaScript:
const char = '\u19B8';
console.log(char); // Output: ᦸ
Java:
char c = '\u19B8';
System.out.println(c); // Output: ᦸ
JSON:
{"text": "\u19B8"} // Value: ᦸ
Python:
char = '\u19B8'
print(char) # Output: ᦸ
Perl:
my $char = "\x{19B8}";
print $char; # Output: ᦸ
PHP:
$char = "\x{19B8}";
echo $char; // Output: ᦸ
Ruby:
char = "\u{19B8}"
puts char # Output: ᦸ
Rust:
let c = '\u{19B8}';
println!("{}", c); // Output: ᦸ
Go:
char := '\u19B8'
fmt.Printf("%c\n", char) // Output: ᦸ
CSS:
/* CSS content property */
.element::before {
content: "\0019B8"; /* 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%A6%B8
MD5:
2f75776ddcdd864c6d730a7468b912b9
SHA1:
d6f084df8030f6fa0b64fc5262078541d14308a7
Base64:
4aa4