C:
char c = '\u6420';
printf("%c\n", c); // Output: 搠
JavaScript:
const char = '\u6420';
console.log(char); // Output: 搠
Java:
char c = '\u6420';
System.out.println(c); // Output: 搠
JSON:
{"text": "\u6420"} // Value: 搠
Python:
char = '\u6420'
print(char) # Output: 搠
Perl:
my $char = "\x{6420}";
print $char; # Output: 搠
PHP:
$char = "\x{6420}";
echo $char; // Output: 搠
Ruby:
char = "\u{6420}"
puts char # Output: 搠
Rust:
let c = '\u{6420}';
println!("{}", c); // Output: 搠
Go:
char := '\u6420'
fmt.Printf("%c\n", char) // Output: 搠
CSS:
/* CSS content property */
.element::before {
content: "\006420"; /* 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%A0
MD5:
ff65a7311d51f21b153773d53374cb2a
SHA1:
55eb7052b98bcc0530219dca9ff09feba9aef895
Base64:
5pCg