C:
char c = '\u6917';
printf("%c\n", c); // Output: 椗
JavaScript:
const char = '\u6917';
console.log(char); // Output: 椗
Java:
char c = '\u6917';
System.out.println(c); // Output: 椗
JSON:
{"text": "\u6917"} // Value: 椗
Python:
char = '\u6917'
print(char) # Output: 椗
Perl:
my $char = "\x{6917}";
print $char; # Output: 椗
PHP:
$char = "\x{6917}";
echo $char; // Output: 椗
Ruby:
char = "\u{6917}"
puts char # Output: 椗
Rust:
let c = '\u{6917}';
println!("{}", c); // Output: 椗
Go:
char := '\u6917'
fmt.Printf("%c\n", char) // Output: 椗
CSS:
/* CSS content property */
.element::before {
content: "\006917"; /* 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%97
MD5:
d325b9e66a4efc12b1fd846dedbcaaa4
SHA1:
8898edac8b64aecd16722937a2d25199fe425086
Base64:
5qSX