C:
char c = '\u6953';
printf("%c\n", c); // Output: 楓
JavaScript:
const char = '\u6953';
console.log(char); // Output: 楓
Java:
char c = '\u6953';
System.out.println(c); // Output: 楓
JSON:
{"text": "\u6953"} // Value: 楓
Python:
char = '\u6953'
print(char) # Output: 楓
Perl:
my $char = "\x{6953}";
print $char; # Output: 楓
PHP:
$char = "\x{6953}";
echo $char; // Output: 楓
Ruby:
char = "\u{6953}"
puts char # Output: 楓
Rust:
let c = '\u{6953}';
println!("{}", c); // Output: 楓
Go:
char := '\u6953'
fmt.Printf("%c\n", char) // Output: 楓
CSS:
/* CSS content property */
.element::before {
content: "\006953"; /* 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%A5%93
MD5:
6ed20b696fbac64ca0f678f936a880d5
SHA1:
beaea610520e9d690c716fe1f8c67039f314bd62
Base64:
5qWT