C:
char c = '\u6423';
printf("%c\n", c); // Output: 搣
JavaScript:
const char = '\u6423';
console.log(char); // Output: 搣
Java:
char c = '\u6423';
System.out.println(c); // Output: 搣
JSON:
{"text": "\u6423"} // Value: 搣
Python:
char = '\u6423'
print(char) # Output: 搣
Perl:
my $char = "\x{6423}";
print $char; # Output: 搣
PHP:
$char = "\x{6423}";
echo $char; // Output: 搣
Ruby:
char = "\u{6423}"
puts char # Output: 搣
Rust:
let c = '\u{6423}';
println!("{}", c); // Output: 搣
Go:
char := '\u6423'
fmt.Printf("%c\n", char) // Output: 搣
CSS:
/* CSS content property */
.element::before {
content: "\006423"; /* 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%90%A3
MD5:
97915aaad8f39a92278ea6ff685a6f0f
SHA1:
a1525938015ddcd1019ebee5eeafd137a2e118fa
Base64:
5pCj