C:
char c = '\u6630';
printf("%c\n", c); // Output: 昰
JavaScript:
const char = '\u6630';
console.log(char); // Output: 昰
Java:
char c = '\u6630';
System.out.println(c); // Output: 昰
JSON:
{"text": "\u6630"} // Value: 昰
Python:
char = '\u6630'
print(char) # Output: 昰
Perl:
my $char = "\x{6630}";
print $char; # Output: 昰
PHP:
$char = "\x{6630}";
echo $char; // Output: 昰
Ruby:
char = "\u{6630}"
puts char # Output: 昰
Rust:
let c = '\u{6630}';
println!("{}", c); // Output: 昰
Go:
char := '\u6630'
fmt.Printf("%c\n", char) // Output: 昰
CSS:
/* CSS content property */
.element::before {
content: "\006630"; /* 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%98%B0
MD5:
96fc7c4b65c31136a6cb0267a1dd32bb
SHA1:
3fc02611a3d99425f0bf0b4eb4f091603b60f67c
Base64:
5piw