C:
char c = '\u5227';
printf("%c\n", c); // Output: 刧
JavaScript:
const char = '\u5227';
console.log(char); // Output: 刧
Java:
char c = '\u5227';
System.out.println(c); // Output: 刧
JSON:
{"text": "\u5227"} // Value: 刧
Python:
char = '\u5227'
print(char) # Output: 刧
Perl:
my $char = "\x{5227}";
print $char; # Output: 刧
PHP:
$char = "\x{5227}";
echo $char; // Output: 刧
Ruby:
char = "\u{5227}"
puts char # Output: 刧
Rust:
let c = '\u{5227}';
println!("{}", c); // Output: 刧
Go:
char := '\u5227'
fmt.Printf("%c\n", char) // Output: 刧
CSS:
/* CSS content property */
.element::before {
content: "\005227"; /* 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%88%A7
MD5:
88ad3b0af33a5fa509ae111581fd1fa8
SHA1:
64199300ca50ceee6d2992edd0fa8c5b57bd447f
Base64:
5Yin