C:
char c = '\u6387';
printf("%c\n", c); // Output: 掇
JavaScript:
const char = '\u6387';
console.log(char); // Output: 掇
Java:
char c = '\u6387';
System.out.println(c); // Output: 掇
JSON:
{"text": "\u6387"} // Value: 掇
Python:
char = '\u6387'
print(char) # Output: 掇
Perl:
my $char = "\x{6387}";
print $char; # Output: 掇
PHP:
$char = "\x{6387}";
echo $char; // Output: 掇
Ruby:
char = "\u{6387}"
puts char # Output: 掇
Rust:
let c = '\u{6387}';
println!("{}", c); // Output: 掇
Go:
char := '\u6387'
fmt.Printf("%c\n", char) // Output: 掇
CSS:
/* CSS content property */
.element::before {
content: "\006387"; /* 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%8E%87
MD5:
7c4015d35a68589e40768e0ccdf73303
SHA1:
479ffb4a12066c73f8d6f86177e92e02a8073ebd
Base64:
5o6H