C:
char c = '\u7559';
printf("%c\n", c); // Output: 留
JavaScript:
const char = '\u7559';
console.log(char); // Output: 留
Java:
char c = '\u7559';
System.out.println(c); // Output: 留
JSON:
{"text": "\u7559"} // Value: 留
Python:
char = '\u7559'
print(char) # Output: 留
Perl:
my $char = "\x{7559}";
print $char; # Output: 留
PHP:
$char = "\x{7559}";
echo $char; // Output: 留
Ruby:
char = "\u{7559}"
puts char # Output: 留
Rust:
let c = '\u{7559}';
println!("{}", c); // Output: 留
Go:
char := '\u7559'
fmt.Printf("%c\n", char) // Output: 留
CSS:
/* CSS content property */
.element::before {
content: "\007559"; /* 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=%E7%95%99
MD5:
e4de2171ff36b747f386fe17ca064ad3
SHA1:
0990e460add3b1546c6028d7162de479234e3101
Base64:
55WZ