C:
char c = '\u1988';
printf("%c\n", c); // Output: ᦈ
JavaScript:
const char = '\u1988';
console.log(char); // Output: ᦈ
Java:
char c = '\u1988';
System.out.println(c); // Output: ᦈ
JSON:
{"text": "\u1988"} // Value: ᦈ
Python:
char = '\u1988'
print(char) # Output: ᦈ
Perl:
my $char = "\x{1988}";
print $char; # Output: ᦈ
PHP:
$char = "\x{1988}";
echo $char; // Output: ᦈ
Ruby:
char = "\u{1988}"
puts char # Output: ᦈ
Rust:
let c = '\u{1988}';
println!("{}", c); // Output: ᦈ
Go:
char := '\u1988'
fmt.Printf("%c\n", char) // Output: ᦈ
CSS:
/* CSS content property */
.element::before {
content: "\001988"; /* 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%88
MD5:
c0cdb116490ab74f63bab66e42f326b5
SHA1:
dcc68e00e73a6a7580181eaa21efc5d07eda76e8
Base64:
4aaI