C:
char c = '\u715F';
printf("%c\n", c); // Output: 煟
JavaScript:
const char = '\u715F';
console.log(char); // Output: 煟
Java:
char c = '\u715F';
System.out.println(c); // Output: 煟
JSON:
{"text": "\u715F"} // Value: 煟
Python:
char = '\u715F'
print(char) # Output: 煟
Perl:
my $char = "\x{715F}";
print $char; # Output: 煟
PHP:
$char = "\x{715F}";
echo $char; // Output: 煟
Ruby:
char = "\u{715F}"
puts char # Output: 煟
Rust:
let c = '\u{715F}';
println!("{}", c); // Output: 煟
Go:
char := '\u715F'
fmt.Printf("%c\n", char) // Output: 煟
CSS:
/* CSS content property */
.element::before {
content: "\00715F"; /* 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%9F
MD5:
f707d060072926108bc51331bc716057
SHA1:
012c5317db88cfb747fcd7f6406321fb0998c64a
Base64:
54Wf