C:
char c = '\u7164';
printf("%c\n", c); // Output: 煤
JavaScript:
const char = '\u7164';
console.log(char); // Output: 煤
Java:
char c = '\u7164';
System.out.println(c); // Output: 煤
JSON:
{"text": "\u7164"} // Value: 煤
Python:
char = '\u7164'
print(char) # Output: 煤
Perl:
my $char = "\x{7164}";
print $char; # Output: 煤
PHP:
$char = "\x{7164}";
echo $char; // Output: 煤
Ruby:
char = "\u{7164}"
puts char # Output: 煤
Rust:
let c = '\u{7164}';
println!("{}", c); // Output: 煤
Go:
char := '\u7164'
fmt.Printf("%c\n", char) // Output: 煤
CSS:
/* CSS content property */
.element::before {
content: "\007164"; /* 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%A4
MD5:
9eaffed5efa1f007c68e7ef71591dccf
SHA1:
1adc77d31df1c2fbcfce7d038ad2c14558617cac
Base64:
54Wk