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