C:
char c = '\u7949';
printf("%c\n", c); // Output: 祉
JavaScript:
const char = '\u7949';
console.log(char); // Output: 祉
Java:
char c = '\u7949';
System.out.println(c); // Output: 祉
JSON:
{"text": "\u7949"} // Value: 祉
Python:
char = '\u7949'
print(char) # Output: 祉
Perl:
my $char = "\x{7949}";
print $char; # Output: 祉
PHP:
$char = "\x{7949}";
echo $char; // Output: 祉
Ruby:
char = "\u{7949}"
puts char # Output: 祉
Rust:
let c = '\u{7949}';
println!("{}", c); // Output: 祉
Go:
char := '\u7949'
fmt.Printf("%c\n", char) // Output: 祉
CSS:
/* CSS content property */
.element::before {
content: "\007949"; /* 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%89
MD5:
ee3d5e6e6595216a9b101e7617c777fe
SHA1:
2e3d623a29d5e8769e77e43fac98b9abe5cc5482
Base64:
56WJ