C:
char c = '\u6955';
printf("%c\n", c); // Output: 楕
JavaScript:
const char = '\u6955';
console.log(char); // Output: 楕
Java:
char c = '\u6955';
System.out.println(c); // Output: 楕
JSON:
{"text": "\u6955"} // Value: 楕
Python:
char = '\u6955'
print(char) # Output: 楕
Perl:
my $char = "\x{6955}";
print $char; # Output: 楕
PHP:
$char = "\x{6955}";
echo $char; // Output: 楕
Ruby:
char = "\u{6955}"
puts char # Output: 楕
Rust:
let c = '\u{6955}';
println!("{}", c); // Output: 楕
Go:
char := '\u6955'
fmt.Printf("%c\n", char) // Output: 楕
CSS:
/* CSS content property */
.element::before {
content: "\006955"; /* 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=%E6%A5%95
MD5:
a9a7ff9b1330249c1b8e4644687702f3
SHA1:
d4145e1c8ff0ea64e18b6af494bb13e41d88dfa4
Base64:
5qWV