C:
char c = '\u7153';
printf("%c\n", c); // Output: 煓
JavaScript:
const char = '\u7153';
console.log(char); // Output: 煓
Java:
char c = '\u7153';
System.out.println(c); // Output: 煓
JSON:
{"text": "\u7153"} // Value: 煓
Python:
char = '\u7153'
print(char) # Output: 煓
Perl:
my $char = "\x{7153}";
print $char; # Output: 煓
PHP:
$char = "\x{7153}";
echo $char; // Output: 煓
Ruby:
char = "\u{7153}"
puts char # Output: 煓
Rust:
let c = '\u{7153}';
println!("{}", c); // Output: 煓
Go:
char := '\u7153'
fmt.Printf("%c\n", char) // Output: 煓
CSS:
/* CSS content property */
.element::before {
content: "\007153"; /* 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%93
MD5:
34e6e84e28e42683d3af93117520b626
SHA1:
f7c8fded3a57e00da24e30004ab094b4ac1efaa8
Base64:
54WT