C:
char c = '\u5765';
printf("%c\n", c); // Output: 坥
JavaScript:
const char = '\u5765';
console.log(char); // Output: 坥
Java:
char c = '\u5765';
System.out.println(c); // Output: 坥
JSON:
{"text": "\u5765"} // Value: 坥
Python:
char = '\u5765'
print(char) # Output: 坥
Perl:
my $char = "\x{5765}";
print $char; # Output: 坥
PHP:
$char = "\x{5765}";
echo $char; // Output: 坥
Ruby:
char = "\u{5765}"
puts char # Output: 坥
Rust:
let c = '\u{5765}';
println!("{}", c); // Output: 坥
Go:
char := '\u5765'
fmt.Printf("%c\n", char) // Output: 坥
CSS:
/* CSS content property */
.element::before {
content: "\005765"; /* 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%9D%A5
MD5:
5a9a0de6e7546b76841cb64467544bd6
SHA1:
1ebc57d3fd57686fa26089ce3e7a2b7c3848ad8f
Base64:
5Z2l