C:
char c = '\u6600';
printf("%c\n", c); // Output: 昀
JavaScript:
const char = '\u6600';
console.log(char); // Output: 昀
Java:
char c = '\u6600';
System.out.println(c); // Output: 昀
JSON:
{"text": "\u6600"} // Value: 昀
Python:
char = '\u6600'
print(char) # Output: 昀
Perl:
my $char = "\x{6600}";
print $char; # Output: 昀
PHP:
$char = "\x{6600}";
echo $char; // Output: 昀
Ruby:
char = "\u{6600}"
puts char # Output: 昀
Rust:
let c = '\u{6600}';
println!("{}", c); // Output: 昀
Go:
char := '\u6600'
fmt.Printf("%c\n", char) // Output: 昀
CSS:
/* CSS content property */
.element::before {
content: "\006600"; /* 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%80
MD5:
44391aaeab3c7182f0b1a1305d252993
SHA1:
735d59b03f3eac2c8b914fdb875f68ad666b901c
Base64:
5piA