C:
char c = '\u6321';
printf("%c\n", c); // Output: 挡
JavaScript:
const char = '\u6321';
console.log(char); // Output: 挡
Java:
char c = '\u6321';
System.out.println(c); // Output: 挡
JSON:
{"text": "\u6321"} // Value: 挡
Python:
char = '\u6321'
print(char) # Output: 挡
Perl:
my $char = "\x{6321}";
print $char; # Output: 挡
PHP:
$char = "\x{6321}";
echo $char; // Output: 挡
Ruby:
char = "\u{6321}"
puts char # Output: 挡
Rust:
let c = '\u{6321}';
println!("{}", c); // Output: 挡
Go:
char := '\u6321'
fmt.Printf("%c\n", char) // Output: 挡
CSS:
/* CSS content property */
.element::before {
content: "\006321"; /* 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%A1
MD5:
2a3df8b7f0b4f5a756bb22261ed4ebf6
SHA1:
854ce48b1272239e857fa3f259328de6f62d6cd7
Base64:
5oyh