C:
char c = '\u5986';
printf("%c\n", c); // Output: 妆
JavaScript:
const char = '\u5986';
console.log(char); // Output: 妆
Java:
char c = '\u5986';
System.out.println(c); // Output: 妆
JSON:
{"text": "\u5986"} // Value: 妆
Python:
char = '\u5986'
print(char) # Output: 妆
Perl:
my $char = "\x{5986}";
print $char; # Output: 妆
PHP:
$char = "\x{5986}";
echo $char; // Output: 妆
Ruby:
char = "\u{5986}"
puts char # Output: 妆
Rust:
let c = '\u{5986}';
println!("{}", c); // Output: 妆
Go:
char := '\u5986'
fmt.Printf("%c\n", char) // Output: 妆
CSS:
/* CSS content property */
.element::before {
content: "\005986"; /* 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=%E5%A6%86
MD5:
7e970cd856cd9f89766934749a627b85
SHA1:
dbb5aeb230a0467d6f605a1ba5a044079b7e0203
Base64:
5aaG