C:
char c = '\u9708';
printf("%c\n", c); // Output: 霈
JavaScript:
const char = '\u9708';
console.log(char); // Output: 霈
Java:
char c = '\u9708';
System.out.println(c); // Output: 霈
JSON:
{"text": "\u9708"} // Value: 霈
Python:
char = '\u9708'
print(char) # Output: 霈
Perl:
my $char = "\x{9708}";
print $char; # Output: 霈
PHP:
$char = "\x{9708}";
echo $char; // Output: 霈
Ruby:
char = "\u{9708}"
puts char # Output: 霈
Rust:
let c = '\u{9708}';
println!("{}", c); // Output: 霈
Go:
char := '\u9708'
fmt.Printf("%c\n", char) // Output: 霈
CSS:
/* CSS content property */
.element::before {
content: "\009708"; /* 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%88
MD5:
89f575d000a9a0f49bb3a2a6b69509dd
SHA1:
07ba5504f59155e52cd2915d0127be2f0f8907bb
Base64:
6ZyI