C:
char c = '\u7626';
printf("%c\n", c); // Output: 瘦
JavaScript:
const char = '\u7626';
console.log(char); // Output: 瘦
Java:
char c = '\u7626';
System.out.println(c); // Output: 瘦
JSON:
{"text": "\u7626"} // Value: 瘦
Python:
char = '\u7626'
print(char) # Output: 瘦
Perl:
my $char = "\x{7626}";
print $char; # Output: 瘦
PHP:
$char = "\x{7626}";
echo $char; // Output: 瘦
Ruby:
char = "\u{7626}"
puts char # Output: 瘦
Rust:
let c = '\u{7626}';
println!("{}", c); // Output: 瘦
Go:
char := '\u7626'
fmt.Printf("%c\n", char) // Output: 瘦
CSS:
/* CSS content property */
.element::before {
content: "\007626"; /* 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%98%A6
MD5:
1d1b5cb221c5fe3f315c795dbd27f108
SHA1:
ea2d31a04ef0de88fc6e99572d384304c2aa1e92
Base64:
55im