C:
char c = '\u7171';
printf("%c\n", c); // Output: 煱
JavaScript:
const char = '\u7171';
console.log(char); // Output: 煱
Java:
char c = '\u7171';
System.out.println(c); // Output: 煱
JSON:
{"text": "\u7171"} // Value: 煱
Python:
char = '\u7171'
print(char) # Output: 煱
Perl:
my $char = "\x{7171}";
print $char; # Output: 煱
PHP:
$char = "\x{7171}";
echo $char; // Output: 煱
Ruby:
char = "\u{7171}"
puts char # Output: 煱
Rust:
let c = '\u{7171}';
println!("{}", c); // Output: 煱
Go:
char := '\u7171'
fmt.Printf("%c\n", char) // Output: 煱
CSS:
/* CSS content property */
.element::before {
content: "\007171"; /* 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%85%B1
MD5:
6995e9d2acfea226e1678ca784f1fa09
SHA1:
8e832f748c232781ae44beb43884d3ff39af7ecb
Base64:
54Wx