C:
char c = '\u6087';
printf("%c\n", c); // Output: 悇
JavaScript:
const char = '\u6087';
console.log(char); // Output: 悇
Java:
char c = '\u6087';
System.out.println(c); // Output: 悇
JSON:
{"text": "\u6087"} // Value: 悇
Python:
char = '\u6087'
print(char) # Output: 悇
Perl:
my $char = "\x{6087}";
print $char; # Output: 悇
PHP:
$char = "\x{6087}";
echo $char; // Output: 悇
Ruby:
char = "\u{6087}"
puts char # Output: 悇
Rust:
let c = '\u{6087}';
println!("{}", c); // Output: 悇
Go:
char := '\u6087'
fmt.Printf("%c\n", char) // Output: 悇
CSS:
/* CSS content property */
.element::before {
content: "\006087"; /* 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%87
MD5:
78468f10bcfc82736e44426e804d59cc
SHA1:
dad5fa3e6901a6c4ae5b67f7abbfc96fb9d7d479
Base64:
5oKH