C:
char c = '\u9718';
printf("%c\n", c); // Output: 霘
JavaScript:
const char = '\u9718';
console.log(char); // Output: 霘
Java:
char c = '\u9718';
System.out.println(c); // Output: 霘
JSON:
{"text": "\u9718"} // Value: 霘
Python:
char = '\u9718'
print(char) # Output: 霘
Perl:
my $char = "\x{9718}";
print $char; # Output: 霘
PHP:
$char = "\x{9718}";
echo $char; // Output: 霘
Ruby:
char = "\u{9718}"
puts char # Output: 霘
Rust:
let c = '\u{9718}';
println!("{}", c); // Output: 霘
Go:
char := '\u9718'
fmt.Printf("%c\n", char) // Output: 霘
CSS:
/* CSS content property */
.element::before {
content: "\009718"; /* 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%98
MD5:
a3a379c8e5763fe7ccceca44d94d1653
SHA1:
128c8fe85304644112586f02399250e2730d3282
Base64:
6ZyY