C:
char c = '\u8E88';
printf("%c\n", c); // Output: 躈
JavaScript:
const char = '\u8E88';
console.log(char); // Output: 躈
Java:
char c = '\u8E88';
System.out.println(c); // Output: 躈
JSON:
{"text": "\u8E88"} // Value: 躈
Python:
char = '\u8E88'
print(char) # Output: 躈
Perl:
my $char = "\x{8E88}";
print $char; # Output: 躈
PHP:
$char = "\x{8E88}";
echo $char; // Output: 躈
Ruby:
char = "\u{8E88}"
puts char # Output: 躈
Rust:
let c = '\u{8E88}';
println!("{}", c); // Output: 躈
Go:
char := '\u8E88'
fmt.Printf("%c\n", char) // Output: 躈
CSS:
/* CSS content property */
.element::before {
content: "\008E88"; /* 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=%E8%BA%88
MD5:
a1b5cb09ad915a8ee6c8bdcf7152df7f
SHA1:
2a721d088b41b815dfeced013addc4707d63fd4b
Base64:
6LqI