C:
char c = '\u9727';
printf("%c\n", c); // Output: 霧
JavaScript:
const char = '\u9727';
console.log(char); // Output: 霧
Java:
char c = '\u9727';
System.out.println(c); // Output: 霧
JSON:
{"text": "\u9727"} // Value: 霧
Python:
char = '\u9727'
print(char) # Output: 霧
Perl:
my $char = "\x{9727}";
print $char; # Output: 霧
PHP:
$char = "\x{9727}";
echo $char; // Output: 霧
Ruby:
char = "\u{9727}"
puts char # Output: 霧
Rust:
let c = '\u{9727}';
println!("{}", c); // Output: 霧
Go:
char := '\u9727'
fmt.Printf("%c\n", char) // Output: 霧
CSS:
/* CSS content property */
.element::before {
content: "\009727"; /* 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%9C%A7
MD5:
f1abb4fb2f1b32ea6d648b77553bc010
SHA1:
056ed40d956296a461807a5aed8f48bf97d47397
Base64:
6Zyn