C:
char c = '\u5726';
printf("%c\n", c); // Output: 圦
JavaScript:
const char = '\u5726';
console.log(char); // Output: 圦
Java:
char c = '\u5726';
System.out.println(c); // Output: 圦
JSON:
{"text": "\u5726"} // Value: 圦
Python:
char = '\u5726'
print(char) # Output: 圦
Perl:
my $char = "\x{5726}";
print $char; # Output: 圦
PHP:
$char = "\x{5726}";
echo $char; // Output: 圦
Ruby:
char = "\u{5726}"
puts char # Output: 圦
Rust:
let c = '\u{5726}';
println!("{}", c); // Output: 圦
Go:
char := '\u5726'
fmt.Printf("%c\n", char) // Output: 圦
CSS:
/* CSS content property */
.element::before {
content: "\005726"; /* 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%A6
MD5:
d2fc7050a2189278aacb9d8f87df8abf
SHA1:
7d1d11d08cd4a8f0706b4748b4b5c1de5aa8d62b
Base64:
5Zym