C:
char c = '\u7947';
printf("%c\n", c); // Output: 祇
JavaScript:
const char = '\u7947';
console.log(char); // Output: 祇
Java:
char c = '\u7947';
System.out.println(c); // Output: 祇
JSON:
{"text": "\u7947"} // Value: 祇
Python:
char = '\u7947'
print(char) # Output: 祇
Perl:
my $char = "\x{7947}";
print $char; # Output: 祇
PHP:
$char = "\x{7947}";
echo $char; // Output: 祇
Ruby:
char = "\u{7947}"
puts char # Output: 祇
Rust:
let c = '\u{7947}';
println!("{}", c); // Output: 祇
Go:
char := '\u7947'
fmt.Printf("%c\n", char) // Output: 祇
CSS:
/* CSS content property */
.element::before {
content: "\007947"; /* 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%87
MD5:
6cecbc2b3c916978d8de7047ecbe3638
SHA1:
04c023132c4680ab06e3fac68d24083d3c04529c
Base64:
56WH