C:
char c = '\u5214';
printf("%c\n", c); // Output: 刔
JavaScript:
const char = '\u5214';
console.log(char); // Output: 刔
Java:
char c = '\u5214';
System.out.println(c); // Output: 刔
JSON:
{"text": "\u5214"} // Value: 刔
Python:
char = '\u5214'
print(char) # Output: 刔
Perl:
my $char = "\x{5214}";
print $char; # Output: 刔
PHP:
$char = "\x{5214}";
echo $char; // Output: 刔
Ruby:
char = "\u{5214}"
puts char # Output: 刔
Rust:
let c = '\u{5214}';
println!("{}", c); // Output: 刔
Go:
char := '\u5214'
fmt.Printf("%c\n", char) // Output: 刔
CSS:
/* CSS content property */
.element::before {
content: "\005214"; /* 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%94
MD5:
469ae750edac584d87e5e765d158c057
SHA1:
72745f7de529a6c349b8d8f7e18b0d98d64ea1f4
Base64:
5YiU