C:
char c = '\u6340';
printf("%c\n", c); // Output: 捀
JavaScript:
const char = '\u6340';
console.log(char); // Output: 捀
Java:
char c = '\u6340';
System.out.println(c); // Output: 捀
JSON:
{"text": "\u6340"} // Value: 捀
Python:
char = '\u6340'
print(char) # Output: 捀
Perl:
my $char = "\x{6340}";
print $char; # Output: 捀
PHP:
$char = "\x{6340}";
echo $char; // Output: 捀
Ruby:
char = "\u{6340}"
puts char # Output: 捀
Rust:
let c = '\u{6340}';
println!("{}", c); // Output: 捀
Go:
char := '\u6340'
fmt.Printf("%c\n", char) // Output: 捀
CSS:
/* CSS content property */
.element::before {
content: "\006340"; /* 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%8D%80
MD5:
3d05bb5d38b472830dfa16c7082417e9
SHA1:
d246114ab90519804644e853fdfd04e87308a007
Base64:
5o2A