C:
char c = '\u6A9C';
printf("%c\n", c); // Output: 檜
JavaScript:
const char = '\u6A9C';
console.log(char); // Output: 檜
Java:
char c = '\u6A9C';
System.out.println(c); // Output: 檜
JSON:
{"text": "\u6A9C"} // Value: 檜
Python:
char = '\u6A9C'
print(char) # Output: 檜
Perl:
my $char = "\x{6A9C}";
print $char; # Output: 檜
PHP:
$char = "\x{6A9C}";
echo $char; // Output: 檜
Ruby:
char = "\u{6A9C}"
puts char # Output: 檜
Rust:
let c = '\u{6A9C}';
println!("{}", c); // Output: 檜
Go:
char := '\u6A9C'
fmt.Printf("%c\n", char) // Output: 檜
CSS:
/* CSS content property */
.element::before {
content: "\006A9C"; /* 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%AA%9C
MD5:
db2c97fe4fc280c99fc73b23aafc890a
SHA1:
883fef53b8639c7deb974afdc9bf1e05411990c1
Base64:
5qqc