C:
char c = '\u5199';
printf("%c\n", c); // Output: 写
JavaScript:
const char = '\u5199';
console.log(char); // Output: 写
Java:
char c = '\u5199';
System.out.println(c); // Output: 写
JSON:
{"text": "\u5199"} // Value: 写
Python:
char = '\u5199'
print(char) # Output: 写
Perl:
my $char = "\x{5199}";
print $char; # Output: 写
PHP:
$char = "\x{5199}";
echo $char; // Output: 写
Ruby:
char = "\u{5199}"
puts char # Output: 写
Rust:
let c = '\u{5199}';
println!("{}", c); // Output: 写
Go:
char := '\u5199'
fmt.Printf("%c\n", char) // Output: 写
CSS:
/* CSS content property */
.element::before {
content: "\005199"; /* 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%86%99
MD5:
4d7dc6c5f886053abc31cee1376fb5c0
SHA1:
144d2cba118141edefa005ee71efe886948d6f1d
Base64:
5YaZ