C:
char c = '\u6316';
printf("%c\n", c); // Output: 挖
JavaScript:
const char = '\u6316';
console.log(char); // Output: 挖
Java:
char c = '\u6316';
System.out.println(c); // Output: 挖
JSON:
{"text": "\u6316"} // Value: 挖
Python:
char = '\u6316'
print(char) # Output: 挖
Perl:
my $char = "\x{6316}";
print $char; # Output: 挖
PHP:
$char = "\x{6316}";
echo $char; // Output: 挖
Ruby:
char = "\u{6316}"
puts char # Output: 挖
Rust:
let c = '\u{6316}';
println!("{}", c); // Output: 挖
Go:
char := '\u6316'
fmt.Printf("%c\n", char) // Output: 挖
CSS:
/* CSS content property */
.element::before {
content: "\006316"; /* 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%8C%96
MD5:
098d40d5136de5ba415fcb1c4a1647a8
SHA1:
36bc9a7ef5be716d7312da263f0e541b69f40ac8
Base64:
5oyW