C:
char c = '\u7EDC';
printf("%c\n", c); // Output: 络
JavaScript:
const char = '\u7EDC';
console.log(char); // Output: 络
Java:
char c = '\u7EDC';
System.out.println(c); // Output: 络
JSON:
{"text": "\u7EDC"} // Value: 络
Python:
char = '\u7EDC'
print(char) # Output: 络
Perl:
my $char = "\x{7EDC}";
print $char; # Output: 络
PHP:
$char = "\x{7EDC}";
echo $char; // Output: 络
Ruby:
char = "\u{7EDC}"
puts char # Output: 络
Rust:
let c = '\u{7EDC}';
println!("{}", c); // Output: 络
Go:
char := '\u7EDC'
fmt.Printf("%c\n", char) // Output: 络
CSS:
/* CSS content property */
.element::before {
content: "\007EDC"; /* 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%BB%9C
MD5:
1983c84b53fc9577afe34766028909ef
SHA1:
a81300b8def4d6e86de9f60df684dcb38d1fa0b2
Base64:
57uc