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