C:
char c = '\u6A2B';
printf("%c\n", c); // Output: 樫
JavaScript:
const char = '\u6A2B';
console.log(char); // Output: 樫
Java:
char c = '\u6A2B';
System.out.println(c); // Output: 樫
JSON:
{"text": "\u6A2B"} // Value: 樫
Python:
char = '\u6A2B'
print(char) # Output: 樫
Perl:
my $char = "\x{6A2B}";
print $char; # Output: 樫
PHP:
$char = "\x{6A2B}";
echo $char; // Output: 樫
Ruby:
char = "\u{6A2B}"
puts char # Output: 樫
Rust:
let c = '\u{6A2B}';
println!("{}", c); // Output: 樫
Go:
char := '\u6A2B'
fmt.Printf("%c\n", char) // Output: 樫
CSS:
/* CSS content property */
.element::before {
content: "\006A2B"; /* 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%A8%AB
MD5:
471d7e8b5d74a933c34d98043b62b7f2
SHA1:
51a8a3eaf626968ea33de437dfdfcf6335975cec
Base64:
5qir