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