C:
char c = '\u6088';
printf("%c\n", c); // Output: 悈
JavaScript:
const char = '\u6088';
console.log(char); // Output: 悈
Java:
char c = '\u6088';
System.out.println(c); // Output: 悈
JSON:
{"text": "\u6088"} // Value: 悈
Python:
char = '\u6088'
print(char) # Output: 悈
Perl:
my $char = "\x{6088}";
print $char; # Output: 悈
PHP:
$char = "\x{6088}";
echo $char; // Output: 悈
Ruby:
char = "\u{6088}"
puts char # Output: 悈
Rust:
let c = '\u{6088}';
println!("{}", c); // Output: 悈
Go:
char := '\u6088'
fmt.Printf("%c\n", char) // Output: 悈
CSS:
/* CSS content property */
.element::before {
content: "\006088"; /* 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=%E6%82%88
MD5:
118bc53de60e4698a644a20e883f5dfe
SHA1:
a6ae5a917474bd3a2fb3293292af231c7168bf5c
Base64:
5oKI