C:
char c = '\u5795';
printf("%c\n", c); // Output: 垕
JavaScript:
const char = '\u5795';
console.log(char); // Output: 垕
Java:
char c = '\u5795';
System.out.println(c); // Output: 垕
JSON:
{"text": "\u5795"} // Value: 垕
Python:
char = '\u5795'
print(char) # Output: 垕
Perl:
my $char = "\x{5795}";
print $char; # Output: 垕
PHP:
$char = "\x{5795}";
echo $char; // Output: 垕
Ruby:
char = "\u{5795}"
puts char # Output: 垕
Rust:
let c = '\u{5795}';
println!("{}", c); // Output: 垕
Go:
char := '\u5795'
fmt.Printf("%c\n", char) // Output: 垕
CSS:
/* CSS content property */
.element::before {
content: "\005795"; /* 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=%E5%9E%95
MD5:
6276bf88c8df979bb535c56ec75c53eb
SHA1:
20e06ca7900f2c71a8993b2bc860944f6ce4497d
Base64:
5Z6V