C:
char c = '\u7811';
printf("%c\n", c); // Output: 砑
JavaScript:
const char = '\u7811';
console.log(char); // Output: 砑
Java:
char c = '\u7811';
System.out.println(c); // Output: 砑
JSON:
{"text": "\u7811"} // Value: 砑
Python:
char = '\u7811'
print(char) # Output: 砑
Perl:
my $char = "\x{7811}";
print $char; # Output: 砑
PHP:
$char = "\x{7811}";
echo $char; // Output: 砑
Ruby:
char = "\u{7811}"
puts char # Output: 砑
Rust:
let c = '\u{7811}';
println!("{}", c); // Output: 砑
Go:
char := '\u7811'
fmt.Printf("%c\n", char) // Output: 砑
CSS:
/* CSS content property */
.element::before {
content: "\007811"; /* 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=%E7%A0%91
MD5:
e366fc6bc5b6afe7df8d6a9b8204916a
SHA1:
ca4114d3eb9f13e647e73880ab16b71d7a43fef6
Base64:
56CR