C:
char c = '\u6431';
printf("%c\n", c); // Output: 搱
JavaScript:
const char = '\u6431';
console.log(char); // Output: 搱
Java:
char c = '\u6431';
System.out.println(c); // Output: 搱
JSON:
{"text": "\u6431"} // Value: 搱
Python:
char = '\u6431'
print(char) # Output: 搱
Perl:
my $char = "\x{6431}";
print $char; # Output: 搱
PHP:
$char = "\x{6431}";
echo $char; // Output: 搱
Ruby:
char = "\u{6431}"
puts char # Output: 搱
Rust:
let c = '\u{6431}';
println!("{}", c); // Output: 搱
Go:
char := '\u6431'
fmt.Printf("%c\n", char) // Output: 搱
CSS:
/* CSS content property */
.element::before {
content: "\006431"; /* 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%B1
MD5:
45d58a1a8f09f1917f81797fd3deb30b
SHA1:
916741f267d3eb96ea377bce0d167eab85cd7131
Base64:
5pCx