C:
char c = '\u6660';
printf("%c\n", c); // Output: 晠
JavaScript:
const char = '\u6660';
console.log(char); // Output: 晠
Java:
char c = '\u6660';
System.out.println(c); // Output: 晠
JSON:
{"text": "\u6660"} // Value: 晠
Python:
char = '\u6660'
print(char) # Output: 晠
Perl:
my $char = "\x{6660}";
print $char; # Output: 晠
PHP:
$char = "\x{6660}";
echo $char; // Output: 晠
Ruby:
char = "\u{6660}"
puts char # Output: 晠
Rust:
let c = '\u{6660}';
println!("{}", c); // Output: 晠
Go:
char := '\u6660'
fmt.Printf("%c\n", char) // Output: 晠
CSS:
/* CSS content property */
.element::before {
content: "\006660"; /* 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%99%A0
MD5:
1a42c4b85f2c6418b5772cd270df1877
SHA1:
36e0e87bc1f0549d60b772302ed84e5b6b297dff
Base64:
5pmg