C:
char c = '\u7192';
printf("%c\n", c); // Output: 熒
JavaScript:
const char = '\u7192';
console.log(char); // Output: 熒
Java:
char c = '\u7192';
System.out.println(c); // Output: 熒
JSON:
{"text": "\u7192"} // Value: 熒
Python:
char = '\u7192'
print(char) # Output: 熒
Perl:
my $char = "\x{7192}";
print $char; # Output: 熒
PHP:
$char = "\x{7192}";
echo $char; // Output: 熒
Ruby:
char = "\u{7192}"
puts char # Output: 熒
Rust:
let c = '\u{7192}';
println!("{}", c); // Output: 熒
Go:
char := '\u7192'
fmt.Printf("%c\n", char) // Output: 熒
CSS:
/* CSS content property */
.element::before {
content: "\007192"; /* 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=%E7%86%92
MD5:
47cc53a0bfaa2d2d0de9502ae231544a
SHA1:
a38ae49f4b1c2d5ddd4bef07f27c9c1c9b9edead
Base64:
54aS