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