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