C:
char c = '\u7F51';
printf("%c\n", c); // Output: 网
JavaScript:
const char = '\u7F51';
console.log(char); // Output: 网
Java:
char c = '\u7F51';
System.out.println(c); // Output: 网
JSON:
{"text": "\u7F51"} // Value: 网
Python:
char = '\u7F51'
print(char) # Output: 网
Perl:
my $char = "\x{7F51}";
print $char; # Output: 网
PHP:
$char = "\x{7F51}";
echo $char; // Output: 网
Ruby:
char = "\u{7F51}"
puts char # Output: 网
Rust:
let c = '\u{7F51}';
println!("{}", c); // Output: 网
Go:
char := '\u7F51'
fmt.Printf("%c\n", char) // Output: 网
CSS:
/* CSS content property */
.element::before {
content: "\007F51"; /* 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%BD%91
MD5:
6ebcee9721e9e2afc6c41b2d10941813
SHA1:
4ad9435ac18bd5ec48b818390e16d8a089386fb8
Base64:
572R