C:
char c = '\u6864';
printf("%c\n", c); // Output: 桤
JavaScript:
const char = '\u6864';
console.log(char); // Output: 桤
Java:
char c = '\u6864';
System.out.println(c); // Output: 桤
JSON:
{"text": "\u6864"} // Value: 桤
Python:
char = '\u6864'
print(char) # Output: 桤
Perl:
my $char = "\x{6864}";
print $char; # Output: 桤
PHP:
$char = "\x{6864}";
echo $char; // Output: 桤
Ruby:
char = "\u{6864}"
puts char # Output: 桤
Rust:
let c = '\u{6864}';
println!("{}", c); // Output: 桤
Go:
char := '\u6864'
fmt.Printf("%c\n", char) // Output: 桤
CSS:
/* CSS content property */
.element::before {
content: "\006864"; /* 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%A4
MD5:
2b46346c2fcd06bee922ace5e92a5c64
SHA1:
5f62b5deb2223b2e2c2bc6826d4665f7a6fec5bd
Base64:
5qGk