C:
char c = '\u5159';
printf("%c\n", c); // Output: 兙
JavaScript:
const char = '\u5159';
console.log(char); // Output: 兙
Java:
char c = '\u5159';
System.out.println(c); // Output: 兙
JSON:
{"text": "\u5159"} // Value: 兙
Python:
char = '\u5159'
print(char) # Output: 兙
Perl:
my $char = "\x{5159}";
print $char; # Output: 兙
PHP:
$char = "\x{5159}";
echo $char; // Output: 兙
Ruby:
char = "\u{5159}"
puts char # Output: 兙
Rust:
let c = '\u{5159}';
println!("{}", c); // Output: 兙
Go:
char := '\u5159'
fmt.Printf("%c\n", char) // Output: 兙
CSS:
/* CSS content property */
.element::before {
content: "\005159"; /* 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%85%99
MD5:
5956cedd3cf550fe7884395a341d8642
SHA1:
9fe6e7c4323d90462386b46cce93872a8d9f97ff
Base64:
5YWZ