C:
char c = '\u7965';
printf("%c\n", c); // Output: 祥
JavaScript:
const char = '\u7965';
console.log(char); // Output: 祥
Java:
char c = '\u7965';
System.out.println(c); // Output: 祥
JSON:
{"text": "\u7965"} // Value: 祥
Python:
char = '\u7965'
print(char) # Output: 祥
Perl:
my $char = "\x{7965}";
print $char; # Output: 祥
PHP:
$char = "\x{7965}";
echo $char; // Output: 祥
Ruby:
char = "\u{7965}"
puts char # Output: 祥
Rust:
let c = '\u{7965}';
println!("{}", c); // Output: 祥
Go:
char := '\u7965'
fmt.Printf("%c\n", char) // Output: 祥
CSS:
/* CSS content property */
.element::before {
content: "\007965"; /* 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%A5
MD5:
24cca24ceb3cf5eea886b49dda24085f
SHA1:
062eae776d4a0aa2cdd48c087e5dc0340ff45ce6
Base64:
56Wl