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