C:
char c = '\u65ED';
printf("%c\n", c); // Output: 旭
JavaScript:
const char = '\u65ED';
console.log(char); // Output: 旭
Java:
char c = '\u65ED';
System.out.println(c); // Output: 旭
JSON:
{"text": "\u65ED"} // Value: 旭
Python:
char = '\u65ED'
print(char) # Output: 旭
Perl:
my $char = "\x{65ED}";
print $char; # Output: 旭
PHP:
$char = "\x{65ED}";
echo $char; // Output: 旭
Ruby:
char = "\u{65ED}"
puts char # Output: 旭
Rust:
let c = '\u{65ED}';
println!("{}", c); // Output: 旭
Go:
char := '\u65ED'
fmt.Printf("%c\n", char) // Output: 旭
CSS:
/* CSS content property */
.element::before {
content: "\0065ED"; /* 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%97%AD
MD5:
40202d11623448d8a9f5f533103e0308
SHA1:
a89140f7f8e1ad9ff614e3565b2c3af5a17ec461
Base64:
5pet