C:
char c = '\u6599';
printf("%c\n", c); // Output: 料
JavaScript:
const char = '\u6599';
console.log(char); // Output: 料
Java:
char c = '\u6599';
System.out.println(c); // Output: 料
JSON:
{"text": "\u6599"} // Value: 料
Python:
char = '\u6599'
print(char) # Output: 料
Perl:
my $char = "\x{6599}";
print $char; # Output: 料
PHP:
$char = "\x{6599}";
echo $char; // Output: 料
Ruby:
char = "\u{6599}"
puts char # Output: 料
Rust:
let c = '\u{6599}';
println!("{}", c); // Output: 料
Go:
char := '\u6599'
fmt.Printf("%c\n", char) // Output: 料
CSS:
/* CSS content property */
.element::before {
content: "\006599"; /* 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=%E6%96%99
MD5:
aeb56c4858a738cca1b432d540733f83
SHA1:
49efc042ad44cf5baf13b9dd0e74e6cedb4448df
Base64:
5paZ