C:
char c = '\u6403';
printf("%c\n", c); // Output: 搃
JavaScript:
const char = '\u6403';
console.log(char); // Output: 搃
Java:
char c = '\u6403';
System.out.println(c); // Output: 搃
JSON:
{"text": "\u6403"} // Value: 搃
Python:
char = '\u6403'
print(char) # Output: 搃
Perl:
my $char = "\x{6403}";
print $char; # Output: 搃
PHP:
$char = "\x{6403}";
echo $char; // Output: 搃
Ruby:
char = "\u{6403}"
puts char # Output: 搃
Rust:
let c = '\u{6403}';
println!("{}", c); // Output: 搃
Go:
char := '\u6403'
fmt.Printf("%c\n", char) // Output: 搃
CSS:
/* CSS content property */
.element::before {
content: "\006403"; /* 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%83
MD5:
35b3f045c3ed0e92a5eb74f776666453
SHA1:
76036566a02878eee91a481670136f6facf998bf
Base64:
5pCD