C:
char c = '\u7149';
printf("%c\n", c); // Output: 煉
JavaScript:
const char = '\u7149';
console.log(char); // Output: 煉
Java:
char c = '\u7149';
System.out.println(c); // Output: 煉
JSON:
{"text": "\u7149"} // Value: 煉
Python:
char = '\u7149'
print(char) # Output: 煉
Perl:
my $char = "\x{7149}";
print $char; # Output: 煉
PHP:
$char = "\x{7149}";
echo $char; // Output: 煉
Ruby:
char = "\u{7149}"
puts char # Output: 煉
Rust:
let c = '\u{7149}';
println!("{}", c); // Output: 煉
Go:
char := '\u7149'
fmt.Printf("%c\n", char) // Output: 煉
CSS:
/* CSS content property */
.element::before {
content: "\007149"; /* 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%89
MD5:
8ba92552a28119a2cc743a250bcaecc8
SHA1:
4f9c0dbf6ad9fc7df642a6af487c9af8216a1b94
Base64:
54WJ