C:
char c = '\u6912';
printf("%c\n", c); // Output: 椒
JavaScript:
const char = '\u6912';
console.log(char); // Output: 椒
Java:
char c = '\u6912';
System.out.println(c); // Output: 椒
JSON:
{"text": "\u6912"} // Value: 椒
Python:
char = '\u6912'
print(char) # Output: 椒
Perl:
my $char = "\x{6912}";
print $char; # Output: 椒
PHP:
$char = "\x{6912}";
echo $char; // Output: 椒
Ruby:
char = "\u{6912}"
puts char # Output: 椒
Rust:
let c = '\u{6912}';
println!("{}", c); // Output: 椒
Go:
char := '\u6912'
fmt.Printf("%c\n", char) // Output: 椒
CSS:
/* CSS content property */
.element::before {
content: "\006912"; /* 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%92
MD5:
4227c372b0e17df08c9347c069e43073
SHA1:
54f05e88a3ceae6b9faa14cf2b176d1bce02587a
Base64:
5qSS