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