C:
char c = '\u7701';
printf("%c\n", c); // Output: 省
JavaScript:
const char = '\u7701';
console.log(char); // Output: 省
Java:
char c = '\u7701';
System.out.println(c); // Output: 省
JSON:
{"text": "\u7701"} // Value: 省
Python:
char = '\u7701'
print(char) # Output: 省
Perl:
my $char = "\x{7701}";
print $char; # Output: 省
PHP:
$char = "\x{7701}";
echo $char; // Output: 省
Ruby:
char = "\u{7701}"
puts char # Output: 省
Rust:
let c = '\u{7701}';
println!("{}", c); // Output: 省
Go:
char := '\u7701'
fmt.Printf("%c\n", char) // Output: 省
CSS:
/* CSS content property */
.element::before {
content: "\007701"; /* 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%9C%81
MD5:
3d14d1a1f9514183570a10fe80a32384
SHA1:
45ad4f70b62e979fb75c88ee143a3d9e1858747e
Base64:
55yB