C:
char c = '\u6960';
printf("%c\n", c); // Output: 楠
JavaScript:
const char = '\u6960';
console.log(char); // Output: 楠
Java:
char c = '\u6960';
System.out.println(c); // Output: 楠
JSON:
{"text": "\u6960"} // Value: 楠
Python:
char = '\u6960'
print(char) # Output: 楠
Perl:
my $char = "\x{6960}";
print $char; # Output: 楠
PHP:
$char = "\x{6960}";
echo $char; // Output: 楠
Ruby:
char = "\u{6960}"
puts char # Output: 楠
Rust:
let c = '\u{6960}';
println!("{}", c); // Output: 楠
Go:
char := '\u6960'
fmt.Printf("%c\n", char) // Output: 楠
CSS:
/* CSS content property */
.element::before {
content: "\006960"; /* 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%A0
MD5:
76096b97a11da24418e1b57f7fbeb940
SHA1:
a1b7fb4c1a802c3ce7ad30cb1d2025de158793e5
Base64:
5qWg