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