C:
char c = '\u8526';
printf("%c\n", c); // Output: 蔦
JavaScript:
const char = '\u8526';
console.log(char); // Output: 蔦
Java:
char c = '\u8526';
System.out.println(c); // Output: 蔦
JSON:
{"text": "\u8526"} // Value: 蔦
Python:
char = '\u8526'
print(char) # Output: 蔦
Perl:
my $char = "\x{8526}";
print $char; # Output: 蔦
PHP:
$char = "\x{8526}";
echo $char; // Output: 蔦
Ruby:
char = "\u{8526}"
puts char # Output: 蔦
Rust:
let c = '\u{8526}';
println!("{}", c); // Output: 蔦
Go:
char := '\u8526'
fmt.Printf("%c\n", char) // Output: 蔦
CSS:
/* CSS content property */
.element::before {
content: "\008526"; /* 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%94%A6
MD5:
08032c7d4ea5868df24a004fac4cbdad
SHA1:
c859ddb8f547f5a6ce072894101ba247dcd6eed9
Base64:
6JSm