C:
char c = '\u6085';
printf("%c\n", c); // Output: 悅
JavaScript:
const char = '\u6085';
console.log(char); // Output: 悅
Java:
char c = '\u6085';
System.out.println(c); // Output: 悅
JSON:
{"text": "\u6085"} // Value: 悅
Python:
char = '\u6085'
print(char) # Output: 悅
Perl:
my $char = "\x{6085}";
print $char; # Output: 悅
PHP:
$char = "\x{6085}";
echo $char; // Output: 悅
Ruby:
char = "\u{6085}"
puts char # Output: 悅
Rust:
let c = '\u{6085}';
println!("{}", c); // Output: 悅
Go:
char := '\u6085'
fmt.Printf("%c\n", char) // Output: 悅
CSS:
/* CSS content property */
.element::before {
content: "\006085"; /* 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%85
MD5:
5c734f6c5e992376a45541f59bc8c648
SHA1:
d2e90d6c8f7091a603e3aa9cfd9d3bd12f18dc1a
Base64:
5oKF