C:
char c = '\u1987';
printf("%c\n", c); // Output: ᦇ
JavaScript:
const char = '\u1987';
console.log(char); // Output: ᦇ
Java:
char c = '\u1987';
System.out.println(c); // Output: ᦇ
JSON:
{"text": "\u1987"} // Value: ᦇ
Python:
char = '\u1987'
print(char) # Output: ᦇ
Perl:
my $char = "\x{1987}";
print $char; # Output: ᦇ
PHP:
$char = "\x{1987}";
echo $char; // Output: ᦇ
Ruby:
char = "\u{1987}"
puts char # Output: ᦇ
Rust:
let c = '\u{1987}';
println!("{}", c); // Output: ᦇ
Go:
char := '\u1987'
fmt.Printf("%c\n", char) // Output: ᦇ
CSS:
/* CSS content property */
.element::before {
content: "\001987"; /* 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%87
MD5:
6192650a49850f32597371198e048333
SHA1:
ab13a27ecc1e0477ea285ee12bc0201bd35c6978
Base64:
4aaH