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