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