C:
char c = '\u5019';
printf("%c\n", c); // Output: 候
JavaScript:
const char = '\u5019';
console.log(char); // Output: 候
Java:
char c = '\u5019';
System.out.println(c); // Output: 候
JSON:
{"text": "\u5019"} // Value: 候
Python:
char = '\u5019'
print(char) # Output: 候
Perl:
my $char = "\x{5019}";
print $char; # Output: 候
PHP:
$char = "\x{5019}";
echo $char; // Output: 候
Ruby:
char = "\u{5019}"
puts char # Output: 候
Rust:
let c = '\u{5019}';
println!("{}", c); // Output: 候
Go:
char := '\u5019'
fmt.Printf("%c\n", char) // Output: 候
CSS:
/* CSS content property */
.element::before {
content: "\005019"; /* 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%80%99
MD5:
588ef62ed5d978127186313b20590c5f
SHA1:
5c225d2da26dee9ff398cd5dcafb0033ef379351
Base64:
5YCZ