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