C:
char c = '\u7956';
printf("%c\n", c); // Output: 祖
JavaScript:
const char = '\u7956';
console.log(char); // Output: 祖
Java:
char c = '\u7956';
System.out.println(c); // Output: 祖
JSON:
{"text": "\u7956"} // Value: 祖
Python:
char = '\u7956'
print(char) # Output: 祖
Perl:
my $char = "\x{7956}";
print $char; # Output: 祖
PHP:
$char = "\x{7956}";
echo $char; // Output: 祖
Ruby:
char = "\u{7956}"
puts char # Output: 祖
Rust:
let c = '\u{7956}';
println!("{}", c); // Output: 祖
Go:
char := '\u7956'
fmt.Printf("%c\n", char) // Output: 祖
CSS:
/* CSS content property */
.element::before {
content: "\007956"; /* 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%A5%96
MD5:
7757611d16508c35d3e32f14433f882e
SHA1:
b0b243542b6b6724c4b9fad49e45eb8faf3db92a
Base64:
56WW