C:
char c = '\u66AE';
printf("%c\n", c); // Output: 暮
JavaScript:
const char = '\u66AE';
console.log(char); // Output: 暮
Java:
char c = '\u66AE';
System.out.println(c); // Output: 暮
JSON:
{"text": "\u66AE"} // Value: 暮
Python:
char = '\u66AE'
print(char) # Output: 暮
Perl:
my $char = "\x{66AE}";
print $char; # Output: 暮
PHP:
$char = "\x{66AE}";
echo $char; // Output: 暮
Ruby:
char = "\u{66AE}"
puts char # Output: 暮
Rust:
let c = '\u{66AE}';
println!("{}", c); // Output: 暮
Go:
char := '\u66AE'
fmt.Printf("%c\n", char) // Output: 暮
CSS:
/* CSS content property */
.element::before {
content: "\0066AE"; /* 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=%E6%9A%AE
MD5:
d99ce74edb67c9ab3963e96dd785b1b9
SHA1:
e2b605d8f3de8ad39f6515c2beabdcd084e77de1
Base64:
5pqu