C:
char c = '\u8715';
printf("%c\n", c); // Output: 蜕
JavaScript:
const char = '\u8715';
console.log(char); // Output: 蜕
Java:
char c = '\u8715';
System.out.println(c); // Output: 蜕
JSON:
{"text": "\u8715"} // Value: 蜕
Python:
char = '\u8715'
print(char) # Output: 蜕
Perl:
my $char = "\x{8715}";
print $char; # Output: 蜕
PHP:
$char = "\x{8715}";
echo $char; // Output: 蜕
Ruby:
char = "\u{8715}"
puts char # Output: 蜕
Rust:
let c = '\u{8715}';
println!("{}", c); // Output: 蜕
Go:
char := '\u8715'
fmt.Printf("%c\n", char) // Output: 蜕
CSS:
/* CSS content property */
.element::before {
content: "\008715"; /* 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=%E8%9C%95
MD5:
ba2ac4e457ff1c35c082c1d102a3e33f
SHA1:
e5eb0a6277ead0ee2f1714340f429d51e91113e7
Base64:
6JyV