C:
char c = '\u795F';
printf("%c\n", c); // Output: 祟
JavaScript:
const char = '\u795F';
console.log(char); // Output: 祟
Java:
char c = '\u795F';
System.out.println(c); // Output: 祟
JSON:
{"text": "\u795F"} // Value: 祟
Python:
char = '\u795F'
print(char) # Output: 祟
Perl:
my $char = "\x{795F}";
print $char; # Output: 祟
PHP:
$char = "\x{795F}";
echo $char; // Output: 祟
Ruby:
char = "\u{795F}"
puts char # Output: 祟
Rust:
let c = '\u{795F}';
println!("{}", c); // Output: 祟
Go:
char := '\u795F'
fmt.Printf("%c\n", char) // Output: 祟
CSS:
/* CSS content property */
.element::before {
content: "\00795F"; /* 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%9F
MD5:
c68fb6d816b71b4310df7bddd8bfb338
SHA1:
3173c902061c8e417334ead706d8ceece0cfae09
Base64:
56Wf