C:
char c = '\u9633';
printf("%c\n", c); // Output: 阳
JavaScript:
const char = '\u9633';
console.log(char); // Output: 阳
Java:
char c = '\u9633';
System.out.println(c); // Output: 阳
JSON:
{"text": "\u9633"} // Value: 阳
Python:
char = '\u9633'
print(char) # Output: 阳
Perl:
my $char = "\x{9633}";
print $char; # Output: 阳
PHP:
$char = "\x{9633}";
echo $char; // Output: 阳
Ruby:
char = "\u{9633}"
puts char # Output: 阳
Rust:
let c = '\u{9633}';
println!("{}", c); // Output: 阳
Go:
char := '\u9633'
fmt.Printf("%c\n", char) // Output: 阳
CSS:
/* CSS content property */
.element::before {
content: "\009633"; /* 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=%E9%98%B3
MD5:
5af5ff9eaf6b572e8255dbee6c563bef
SHA1:
cde25c78b8465634408748d0b150a6f79dfe6944
Base64:
6Ziz