C:
char c = '\u9721';
printf("%c\n", c); // Output: 霡
JavaScript:
const char = '\u9721';
console.log(char); // Output: 霡
Java:
char c = '\u9721';
System.out.println(c); // Output: 霡
JSON:
{"text": "\u9721"} // Value: 霡
Python:
char = '\u9721'
print(char) # Output: 霡
Perl:
my $char = "\x{9721}";
print $char; # Output: 霡
PHP:
$char = "\x{9721}";
echo $char; // Output: 霡
Ruby:
char = "\u{9721}"
puts char # Output: 霡
Rust:
let c = '\u{9721}';
println!("{}", c); // Output: 霡
Go:
char := '\u9721'
fmt.Printf("%c\n", char) // Output: 霡
CSS:
/* CSS content property */
.element::before {
content: "\009721"; /* 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%A1
MD5:
f8e33ed87be32b1f9d895143904f2d85
SHA1:
7b5ab95526455677ef6275ceffade10855774880
Base64:
6Zyh