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