C:
char c = '\u6302';
printf("%c\n", c); // Output: 挂
JavaScript:
const char = '\u6302';
console.log(char); // Output: 挂
Java:
char c = '\u6302';
System.out.println(c); // Output: 挂
JSON:
{"text": "\u6302"} // Value: 挂
Python:
char = '\u6302'
print(char) # Output: 挂
Perl:
my $char = "\x{6302}";
print $char; # Output: 挂
PHP:
$char = "\x{6302}";
echo $char; // Output: 挂
Ruby:
char = "\u{6302}"
puts char # Output: 挂
Rust:
let c = '\u{6302}';
println!("{}", c); // Output: 挂
Go:
char := '\u6302'
fmt.Printf("%c\n", char) // Output: 挂
CSS:
/* CSS content property */
.element::before {
content: "\006302"; /* 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%82
MD5:
b4c2740c4fde903e7dbd2f4d4420fb5b
SHA1:
c566aea4461d54562a0c891625aab37ac529ae80
Base64:
5oyC