C:
char c = '\u6486';
printf("%c\n", c); // Output: 撆
JavaScript:
const char = '\u6486';
console.log(char); // Output: 撆
Java:
char c = '\u6486';
System.out.println(c); // Output: 撆
JSON:
{"text": "\u6486"} // Value: 撆
Python:
char = '\u6486'
print(char) # Output: 撆
Perl:
my $char = "\x{6486}";
print $char; # Output: 撆
PHP:
$char = "\x{6486}";
echo $char; // Output: 撆
Ruby:
char = "\u{6486}"
puts char # Output: 撆
Rust:
let c = '\u{6486}';
println!("{}", c); // Output: 撆
Go:
char := '\u6486'
fmt.Printf("%c\n", char) // Output: 撆
CSS:
/* CSS content property */
.element::before {
content: "\006486"; /* 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%86
MD5:
6fe1ac0ab743f3cdaa061063486adb4f
SHA1:
82da324601a26b24c49895fea894285fc19fb37b
Base64:
5pKG