C:
char c = '\u7162';
printf("%c\n", c); // Output: 煢
JavaScript:
const char = '\u7162';
console.log(char); // Output: 煢
Java:
char c = '\u7162';
System.out.println(c); // Output: 煢
JSON:
{"text": "\u7162"} // Value: 煢
Python:
char = '\u7162'
print(char) # Output: 煢
Perl:
my $char = "\x{7162}";
print $char; # Output: 煢
PHP:
$char = "\x{7162}";
echo $char; // Output: 煢
Ruby:
char = "\u{7162}"
puts char # Output: 煢
Rust:
let c = '\u{7162}';
println!("{}", c); // Output: 煢
Go:
char := '\u7162'
fmt.Printf("%c\n", char) // Output: 煢
CSS:
/* CSS content property */
.element::before {
content: "\007162"; /* 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%A2
MD5:
f01f5ae2df5b53aab46876282e18a7e9
SHA1:
72f577b3a1cd6a0fb66c969fe71b4ca944706bea
Base64:
54Wi