C:
char c = '\u521E';
printf("%c\n", c); // Output: 刞
JavaScript:
const char = '\u521E';
console.log(char); // Output: 刞
Java:
char c = '\u521E';
System.out.println(c); // Output: 刞
JSON:
{"text": "\u521E"} // Value: 刞
Python:
char = '\u521E'
print(char) # Output: 刞
Perl:
my $char = "\x{521E}";
print $char; # Output: 刞
PHP:
$char = "\x{521E}";
echo $char; // Output: 刞
Ruby:
char = "\u{521E}"
puts char # Output: 刞
Rust:
let c = '\u{521E}';
println!("{}", c); // Output: 刞
Go:
char := '\u521E'
fmt.Printf("%c\n", char) // Output: 刞
CSS:
/* CSS content property */
.element::before {
content: "\00521E"; /* 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%9E
MD5:
82b5f02eb826c924f5f950f6b252c695
SHA1:
fce51c6d7b8468935cf307b2da852ea6266279b4
Base64:
5Yie