C:
char c = '\u7160';
printf("%c\n", c); // Output: 煠
JavaScript:
const char = '\u7160';
console.log(char); // Output: 煠
Java:
char c = '\u7160';
System.out.println(c); // Output: 煠
JSON:
{"text": "\u7160"} // Value: 煠
Python:
char = '\u7160'
print(char) # Output: 煠
Perl:
my $char = "\x{7160}";
print $char; # Output: 煠
PHP:
$char = "\x{7160}";
echo $char; // Output: 煠
Ruby:
char = "\u{7160}"
puts char # Output: 煠
Rust:
let c = '\u{7160}';
println!("{}", c); // Output: 煠
Go:
char := '\u7160'
fmt.Printf("%c\n", char) // Output: 煠
CSS:
/* CSS content property */
.element::before {
content: "\007160"; /* 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%A0
MD5:
adc94b60a790e1d4661fb17601aac0e3
SHA1:
f884f08a0b24712e9858595136d2b3b37eb7b727
Base64:
54Wg