C:
char c = '\u7765';
printf("%c\n", c); // Output: 睥
JavaScript:
const char = '\u7765';
console.log(char); // Output: 睥
Java:
char c = '\u7765';
System.out.println(c); // Output: 睥
JSON:
{"text": "\u7765"} // Value: 睥
Python:
char = '\u7765'
print(char) # Output: 睥
Perl:
my $char = "\x{7765}";
print $char; # Output: 睥
PHP:
$char = "\x{7765}";
echo $char; // Output: 睥
Ruby:
char = "\u{7765}"
puts char # Output: 睥
Rust:
let c = '\u{7765}';
println!("{}", c); // Output: 睥
Go:
char := '\u7765'
fmt.Printf("%c\n", char) // Output: 睥
CSS:
/* CSS content property */
.element::before {
content: "\007765"; /* 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%9D%A5
MD5:
ca33d2906920a3d60adc74072260e136
SHA1:
2eade5a228208171797d95efcfda4e260a406b97
Base64:
552l