C:
char c = '\u6851';
printf("%c\n", c); // Output: 桑
JavaScript:
const char = '\u6851';
console.log(char); // Output: 桑
Java:
char c = '\u6851';
System.out.println(c); // Output: 桑
JSON:
{"text": "\u6851"} // Value: 桑
Python:
char = '\u6851'
print(char) # Output: 桑
Perl:
my $char = "\x{6851}";
print $char; # Output: 桑
PHP:
$char = "\x{6851}";
echo $char; // Output: 桑
Ruby:
char = "\u{6851}"
puts char # Output: 桑
Rust:
let c = '\u{6851}';
println!("{}", c); // Output: 桑
Go:
char := '\u6851'
fmt.Printf("%c\n", char) // Output: 桑
CSS:
/* CSS content property */
.element::before {
content: "\006851"; /* 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%A1%91
MD5:
33c85347f7b8e1749ab6b198b174dcee
SHA1:
99137b7c9d614fc3d8d26f5da30ed865e7d3452d
Base64:
5qGR