C:
char c = '\u6811';
printf("%c\n", c); // Output: 树
JavaScript:
const char = '\u6811';
console.log(char); // Output: 树
Java:
char c = '\u6811';
System.out.println(c); // Output: 树
JSON:
{"text": "\u6811"} // Value: 树
Python:
char = '\u6811'
print(char) # Output: 树
Perl:
my $char = "\x{6811}";
print $char; # Output: 树
PHP:
$char = "\x{6811}";
echo $char; // Output: 树
Ruby:
char = "\u{6811}"
puts char # Output: 树
Rust:
let c = '\u{6811}';
println!("{}", c); // Output: 树
Go:
char := '\u6811'
fmt.Printf("%c\n", char) // Output: 树
CSS:
/* CSS content property */
.element::before {
content: "\006811"; /* 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%A0%91
MD5:
302f276a934f5b3debc891512c311e91
SHA1:
78039feab96ef49f783b9abae505641e869a9bb1
Base64:
5qCR