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