C:
char c = '\u7945';
printf("%c\n", c); // Output: 祅
JavaScript:
const char = '\u7945';
console.log(char); // Output: 祅
Java:
char c = '\u7945';
System.out.println(c); // Output: 祅
JSON:
{"text": "\u7945"} // Value: 祅
Python:
char = '\u7945'
print(char) # Output: 祅
Perl:
my $char = "\x{7945}";
print $char; # Output: 祅
PHP:
$char = "\x{7945}";
echo $char; // Output: 祅
Ruby:
char = "\u{7945}"
puts char # Output: 祅
Rust:
let c = '\u{7945}';
println!("{}", c); // Output: 祅
Go:
char := '\u7945'
fmt.Printf("%c\n", char) // Output: 祅
CSS:
/* CSS content property */
.element::before {
content: "\007945"; /* 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%85
MD5:
a51c2ed4acf26a2dafbb5a96b96a4aba
SHA1:
acff3282be7e4ae41e60a0be860782af09bd224a
Base64:
56WF