C:
char c = '\u5466';
printf("%c\n", c); // Output: 呦
JavaScript:
const char = '\u5466';
console.log(char); // Output: 呦
Java:
char c = '\u5466';
System.out.println(c); // Output: 呦
JSON:
{"text": "\u5466"} // Value: 呦
Python:
char = '\u5466'
print(char) # Output: 呦
Perl:
my $char = "\x{5466}";
print $char; # Output: 呦
PHP:
$char = "\x{5466}";
echo $char; // Output: 呦
Ruby:
char = "\u{5466}"
puts char # Output: 呦
Rust:
let c = '\u{5466}';
println!("{}", c); // Output: 呦
Go:
char := '\u5466'
fmt.Printf("%c\n", char) // Output: 呦
CSS:
/* CSS content property */
.element::before {
content: "\005466"; /* 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%91%A6
MD5:
8a2b6528d5b164fbebb08a2c586063c1
SHA1:
3f074b573938c1fb7810709cecf849a7aaf21b63
Base64:
5ZGm