C:
char c = '\u5728';
printf("%c\n", c); // Output: 在
JavaScript:
const char = '\u5728';
console.log(char); // Output: 在
Java:
char c = '\u5728';
System.out.println(c); // Output: 在
JSON:
{"text": "\u5728"} // Value: 在
Python:
char = '\u5728'
print(char) # Output: 在
Perl:
my $char = "\x{5728}";
print $char; # Output: 在
PHP:
$char = "\x{5728}";
echo $char; // Output: 在
Ruby:
char = "\u{5728}"
puts char # Output: 在
Rust:
let c = '\u{5728}';
println!("{}", c); // Output: 在
Go:
char := '\u5728'
fmt.Printf("%c\n", char) // Output: 在
CSS:
/* CSS content property */
.element::before {
content: "\005728"; /* 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%9C%A8
MD5:
241d47a3ee97f044c1f043b9ea81855b
SHA1:
686b703f41f3d5f33b3f36dc2444e59469326078
Base64:
5Zyo