C:
char c = '\u6727';
printf("%c\n", c); // Output: 朧
JavaScript:
const char = '\u6727';
console.log(char); // Output: 朧
Java:
char c = '\u6727';
System.out.println(c); // Output: 朧
JSON:
{"text": "\u6727"} // Value: 朧
Python:
char = '\u6727'
print(char) # Output: 朧
Perl:
my $char = "\x{6727}";
print $char; # Output: 朧
PHP:
$char = "\x{6727}";
echo $char; // Output: 朧
Ruby:
char = "\u{6727}"
puts char # Output: 朧
Rust:
let c = '\u{6727}';
println!("{}", c); // Output: 朧
Go:
char := '\u6727'
fmt.Printf("%c\n", char) // Output: 朧
CSS:
/* CSS content property */
.element::before {
content: "\006727"; /* 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%9C%A7
MD5:
ee686e84e281ba6b7c05547429002271
SHA1:
91507e0f9b6b49d81b4555085528879cc2a36e66
Base64:
5pyn