C:
char c = '\u7146';
printf("%c\n", c); // Output: 煆
JavaScript:
const char = '\u7146';
console.log(char); // Output: 煆
Java:
char c = '\u7146';
System.out.println(c); // Output: 煆
JSON:
{"text": "\u7146"} // Value: 煆
Python:
char = '\u7146'
print(char) # Output: 煆
Perl:
my $char = "\x{7146}";
print $char; # Output: 煆
PHP:
$char = "\x{7146}";
echo $char; // Output: 煆
Ruby:
char = "\u{7146}"
puts char # Output: 煆
Rust:
let c = '\u{7146}';
println!("{}", c); // Output: 煆
Go:
char := '\u7146'
fmt.Printf("%c\n", char) // Output: 煆
CSS:
/* CSS content property */
.element::before {
content: "\007146"; /* 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%86
MD5:
6da7fa71f8cfbbff8157402bdc4b9436
SHA1:
ee84503d9d13cf06fa8dc1242500530d7ad1604d
Base64:
54WG