C:
char c = '\u5218';
printf("%c\n", c); // Output: 刘
JavaScript:
const char = '\u5218';
console.log(char); // Output: 刘
Java:
char c = '\u5218';
System.out.println(c); // Output: 刘
JSON:
{"text": "\u5218"} // Value: 刘
Python:
char = '\u5218'
print(char) # Output: 刘
Perl:
my $char = "\x{5218}";
print $char; # Output: 刘
PHP:
$char = "\x{5218}";
echo $char; // Output: 刘
Ruby:
char = "\u{5218}"
puts char # Output: 刘
Rust:
let c = '\u{5218}';
println!("{}", c); // Output: 刘
Go:
char := '\u5218'
fmt.Printf("%c\n", char) // Output: 刘
CSS:
/* CSS content property */
.element::before {
content: "\005218"; /* 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%88%98
MD5:
7f1016477c414071219411a7c893227c
SHA1:
9316369fc103d9f43b88282546ac2accd5a34427
Base64:
5YiY