C:
char c = '\u7950';
printf("%c\n", c); // Output: 祐
JavaScript:
const char = '\u7950';
console.log(char); // Output: 祐
Java:
char c = '\u7950';
System.out.println(c); // Output: 祐
JSON:
{"text": "\u7950"} // Value: 祐
Python:
char = '\u7950'
print(char) # Output: 祐
Perl:
my $char = "\x{7950}";
print $char; # Output: 祐
PHP:
$char = "\x{7950}";
echo $char; // Output: 祐
Ruby:
char = "\u{7950}"
puts char # Output: 祐
Rust:
let c = '\u{7950}';
println!("{}", c); // Output: 祐
Go:
char := '\u7950'
fmt.Printf("%c\n", char) // Output: 祐
CSS:
/* CSS content property */
.element::before {
content: "\007950"; /* 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%90
MD5:
8129a99aed12ecb24b09d4af7b395481
SHA1:
69b5e88c375386b46019b3ea8a55a2f09d625482
Base64:
56WQ