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