C:
char c = '\u9712';
printf("%c\n", c); // Output: 霒
JavaScript:
const char = '\u9712';
console.log(char); // Output: 霒
Java:
char c = '\u9712';
System.out.println(c); // Output: 霒
JSON:
{"text": "\u9712"} // Value: 霒
Python:
char = '\u9712'
print(char) # Output: 霒
Perl:
my $char = "\x{9712}";
print $char; # Output: 霒
PHP:
$char = "\x{9712}";
echo $char; // Output: 霒
Ruby:
char = "\u{9712}"
puts char # Output: 霒
Rust:
let c = '\u{9712}';
println!("{}", c); // Output: 霒
Go:
char := '\u9712'
fmt.Printf("%c\n", char) // Output: 霒
CSS:
/* CSS content property */
.element::before {
content: "\009712"; /* 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%92
MD5:
5e69fea767a345d3a24e5bb9a9a73d8c
SHA1:
593d40a43136cc6b27e35b905d7f48cd55cdd18c
Base64:
6ZyS