C:
char c = '\u9728';
printf("%c\n", c); // Output: 霨
JavaScript:
const char = '\u9728';
console.log(char); // Output: 霨
Java:
char c = '\u9728';
System.out.println(c); // Output: 霨
JSON:
{"text": "\u9728"} // Value: 霨
Python:
char = '\u9728'
print(char) # Output: 霨
Perl:
my $char = "\x{9728}";
print $char; # Output: 霨
PHP:
$char = "\x{9728}";
echo $char; // Output: 霨
Ruby:
char = "\u{9728}"
puts char # Output: 霨
Rust:
let c = '\u{9728}';
println!("{}", c); // Output: 霨
Go:
char := '\u9728'
fmt.Printf("%c\n", char) // Output: 霨
CSS:
/* CSS content property */
.element::before {
content: "\009728"; /* 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%A8
MD5:
8b49f880eb10aee6c2c131d741993cce
SHA1:
9972e6b536b03fe3e52ac66d57164912dbcebdb4
Base64:
6Zyo