C:
char c = '\u770B';
printf("%c\n", c); // Output: 看
JavaScript:
const char = '\u770B';
console.log(char); // Output: 看
Java:
char c = '\u770B';
System.out.println(c); // Output: 看
JSON:
{"text": "\u770B"} // Value: 看
Python:
char = '\u770B'
print(char) # Output: 看
Perl:
my $char = "\x{770B}";
print $char; # Output: 看
PHP:
$char = "\x{770B}";
echo $char; // Output: 看
Ruby:
char = "\u{770B}"
puts char # Output: 看
Rust:
let c = '\u{770B}';
println!("{}", c); // Output: 看
Go:
char := '\u770B'
fmt.Printf("%c\n", char) // Output: 看
CSS:
/* CSS content property */
.element::before {
content: "\00770B"; /* 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%9C%8B
MD5:
9302446f9b75f4b73a42eaabec9cdebd
SHA1:
5f386ebdbb5c625d91efda6339fc24fe7ccd92be
Base64:
55yL