C:
char c = '\u5915';
printf("%c\n", c); // Output: 夕
JavaScript:
const char = '\u5915';
console.log(char); // Output: 夕
Java:
char c = '\u5915';
System.out.println(c); // Output: 夕
JSON:
{"text": "\u5915"} // Value: 夕
Python:
char = '\u5915'
print(char) # Output: 夕
Perl:
my $char = "\x{5915}";
print $char; # Output: 夕
PHP:
$char = "\x{5915}";
echo $char; // Output: 夕
Ruby:
char = "\u{5915}"
puts char # Output: 夕
Rust:
let c = '\u{5915}';
println!("{}", c); // Output: 夕
Go:
char := '\u5915'
fmt.Printf("%c\n", char) // Output: 夕
CSS:
/* CSS content property */
.element::before {
content: "\005915"; /* 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%A4%95
MD5:
47e0d0f6fe26f82fce7804221e0d9129
SHA1:
396fddaec67c19f3754eb27d61d1444b9606b60e
Base64:
5aSV