C:
char c = '\u6411';
printf("%c\n", c); // Output: 搑
JavaScript:
const char = '\u6411';
console.log(char); // Output: 搑
Java:
char c = '\u6411';
System.out.println(c); // Output: 搑
JSON:
{"text": "\u6411"} // Value: 搑
Python:
char = '\u6411'
print(char) # Output: 搑
Perl:
my $char = "\x{6411}";
print $char; # Output: 搑
PHP:
$char = "\x{6411}";
echo $char; // Output: 搑
Ruby:
char = "\u{6411}"
puts char # Output: 搑
Rust:
let c = '\u{6411}';
println!("{}", c); // Output: 搑
Go:
char := '\u6411'
fmt.Printf("%c\n", char) // Output: 搑
CSS:
/* CSS content property */
.element::before {
content: "\006411"; /* 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%91
MD5:
38ebf1d6a9817209b688bc799ecfd380
SHA1:
d5e5368da82bef3e31e4b9e5610c5956f095f731
Base64:
5pCR