C:
char c = '\u6859';
printf("%c\n", c); // Output: 桙
JavaScript:
const char = '\u6859';
console.log(char); // Output: 桙
Java:
char c = '\u6859';
System.out.println(c); // Output: 桙
JSON:
{"text": "\u6859"} // Value: 桙
Python:
char = '\u6859'
print(char) # Output: 桙
Perl:
my $char = "\x{6859}";
print $char; # Output: 桙
PHP:
$char = "\x{6859}";
echo $char; // Output: 桙
Ruby:
char = "\u{6859}"
puts char # Output: 桙
Rust:
let c = '\u{6859}';
println!("{}", c); // Output: 桙
Go:
char := '\u6859'
fmt.Printf("%c\n", char) // Output: 桙
CSS:
/* CSS content property */
.element::before {
content: "\006859"; /* 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%99
MD5:
3bfab707ecfe72b926ba9cc9250babc7
SHA1:
b97e1f3636ba821d0019de0feab99beaebe0d462
Base64:
5qGZ