C:
char c = '\u6405';
printf("%c\n", c); // Output: 搅
JavaScript:
const char = '\u6405';
console.log(char); // Output: 搅
Java:
char c = '\u6405';
System.out.println(c); // Output: 搅
JSON:
{"text": "\u6405"} // Value: 搅
Python:
char = '\u6405'
print(char) # Output: 搅
Perl:
my $char = "\x{6405}";
print $char; # Output: 搅
PHP:
$char = "\x{6405}";
echo $char; // Output: 搅
Ruby:
char = "\u{6405}"
puts char # Output: 搅
Rust:
let c = '\u{6405}';
println!("{}", c); // Output: 搅
Go:
char := '\u6405'
fmt.Printf("%c\n", char) // Output: 搅
CSS:
/* CSS content property */
.element::before {
content: "\006405"; /* 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%85
MD5:
5444b8f9d2490f543618eb2baab9eefd
SHA1:
c5458ecc886327a7079b39766ecc3a60ed925395
Base64:
5pCF