C:
char c = '\u9723';
printf("%c\n", c); // Output: 霣
JavaScript:
const char = '\u9723';
console.log(char); // Output: 霣
Java:
char c = '\u9723';
System.out.println(c); // Output: 霣
JSON:
{"text": "\u9723"} // Value: 霣
Python:
char = '\u9723'
print(char) # Output: 霣
Perl:
my $char = "\x{9723}";
print $char; # Output: 霣
PHP:
$char = "\x{9723}";
echo $char; // Output: 霣
Ruby:
char = "\u{9723}"
puts char # Output: 霣
Rust:
let c = '\u{9723}';
println!("{}", c); // Output: 霣
Go:
char := '\u9723'
fmt.Printf("%c\n", char) // Output: 霣
CSS:
/* CSS content property */
.element::before {
content: "\009723"; /* 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%A3
MD5:
99c311dab679c7da916230b50ca3f80d
SHA1:
ffaaab6274eae2ce6971a2eed21d6a5fdfae3557
Base64:
6Zyj