C:
char c = '\u7095';
printf("%c\n", c); // Output: 炕
JavaScript:
const char = '\u7095';
console.log(char); // Output: 炕
Java:
char c = '\u7095';
System.out.println(c); // Output: 炕
JSON:
{"text": "\u7095"} // Value: 炕
Python:
char = '\u7095'
print(char) # Output: 炕
Perl:
my $char = "\x{7095}";
print $char; # Output: 炕
PHP:
$char = "\x{7095}";
echo $char; // Output: 炕
Ruby:
char = "\u{7095}"
puts char # Output: 炕
Rust:
let c = '\u{7095}';
println!("{}", c); // Output: 炕
Go:
char := '\u7095'
fmt.Printf("%c\n", char) // Output: 炕
CSS:
/* CSS content property */
.element::before {
content: "\007095"; /* 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%82%95
MD5:
632fa2b9de585133d82ad180db3d681d
SHA1:
22d418d55320127e47ccac941cf6d7c4c7e4f19b
Base64:
54KV