C:
char c = '\u6919';
printf("%c\n", c); // Output: 椙
JavaScript:
const char = '\u6919';
console.log(char); // Output: 椙
Java:
char c = '\u6919';
System.out.println(c); // Output: 椙
JSON:
{"text": "\u6919"} // Value: 椙
Python:
char = '\u6919'
print(char) # Output: 椙
Perl:
my $char = "\x{6919}";
print $char; # Output: 椙
PHP:
$char = "\x{6919}";
echo $char; // Output: 椙
Ruby:
char = "\u{6919}"
puts char # Output: 椙
Rust:
let c = '\u{6919}';
println!("{}", c); // Output: 椙
Go:
char := '\u6919'
fmt.Printf("%c\n", char) // Output: 椙
CSS:
/* CSS content property */
.element::before {
content: "\006919"; /* 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%99
MD5:
b9369ec963bc55a6bd116f65a78ce358
SHA1:
24b22f60b9a8772066cd884d43f9d263876ed0ed
Base64:
5qSZ