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