C:
char c = '\u7F20';
printf("%c\n", c); // Output: 缠
JavaScript:
const char = '\u7F20';
console.log(char); // Output: 缠
Java:
char c = '\u7F20';
System.out.println(c); // Output: 缠
JSON:
{"text": "\u7F20"} // Value: 缠
Python:
char = '\u7F20'
print(char) # Output: 缠
Perl:
my $char = "\x{7F20}";
print $char; # Output: 缠
PHP:
$char = "\x{7F20}";
echo $char; // Output: 缠
Ruby:
char = "\u{7F20}"
puts char # Output: 缠
Rust:
let c = '\u{7F20}';
println!("{}", c); // Output: 缠
Go:
char := '\u7F20'
fmt.Printf("%c\n", char) // Output: 缠
CSS:
/* CSS content property */
.element::before {
content: "\007F20"; /* 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%BC%A0
MD5:
1489dfbd000177817edb505aa201aa79
SHA1:
0f451682562a7e722fe2b95bfbea66bfd7c673b3
Base64:
57yg