C:
char c = '\u5170';
printf("%c\n", c); // Output: 兰
JavaScript:
const char = '\u5170';
console.log(char); // Output: 兰
Java:
char c = '\u5170';
System.out.println(c); // Output: 兰
JSON:
{"text": "\u5170"} // Value: 兰
Python:
char = '\u5170'
print(char) # Output: 兰
Perl:
my $char = "\x{5170}";
print $char; # Output: 兰
PHP:
$char = "\x{5170}";
echo $char; // Output: 兰
Ruby:
char = "\u{5170}"
puts char # Output: 兰
Rust:
let c = '\u{5170}';
println!("{}", c); // Output: 兰
Go:
char := '\u5170'
fmt.Printf("%c\n", char) // Output: 兰
CSS:
/* CSS content property */
.element::before {
content: "\005170"; /* 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%B0
MD5:
c98e3155d97bd67ee09d54eec87b5789
SHA1:
d7d1b73438387f4cda925c72e7f3866e10af5cce
Base64:
5YWw