C:
char c = '\u6922';
printf("%c\n", c); // Output: 椢
JavaScript:
const char = '\u6922';
console.log(char); // Output: 椢
Java:
char c = '\u6922';
System.out.println(c); // Output: 椢
JSON:
{"text": "\u6922"} // Value: 椢
Python:
char = '\u6922'
print(char) # Output: 椢
Perl:
my $char = "\x{6922}";
print $char; # Output: 椢
PHP:
$char = "\x{6922}";
echo $char; // Output: 椢
Ruby:
char = "\u{6922}"
puts char # Output: 椢
Rust:
let c = '\u{6922}';
println!("{}", c); // Output: 椢
Go:
char := '\u6922'
fmt.Printf("%c\n", char) // Output: 椢
CSS:
/* CSS content property */
.element::before {
content: "\006922"; /* 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%A4%A2
MD5:
82ecc947883fb46df12e129de4bd0480
SHA1:
6566c85b9eeb87829c8aacd2c3bf1385ad0876a2
Base64:
5qSi