C:
char c = '\u7948';
printf("%c\n", c); // Output: 祈
JavaScript:
const char = '\u7948';
console.log(char); // Output: 祈
Java:
char c = '\u7948';
System.out.println(c); // Output: 祈
JSON:
{"text": "\u7948"} // Value: 祈
Python:
char = '\u7948'
print(char) # Output: 祈
Perl:
my $char = "\x{7948}";
print $char; # Output: 祈
PHP:
$char = "\x{7948}";
echo $char; // Output: 祈
Ruby:
char = "\u{7948}"
puts char # Output: 祈
Rust:
let c = '\u{7948}';
println!("{}", c); // Output: 祈
Go:
char := '\u7948'
fmt.Printf("%c\n", char) // Output: 祈
CSS:
/* CSS content property */
.element::before {
content: "\007948"; /* 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%88
MD5:
f394133aaf673d91c6059e6e98c77add
SHA1:
867aa96f32f8a0cbb121bc0cd8e9cea777fed40e
Base64:
56WI