C:
char c = '\u5231';
printf("%c\n", c); // Output: 刱
JavaScript:
const char = '\u5231';
console.log(char); // Output: 刱
Java:
char c = '\u5231';
System.out.println(c); // Output: 刱
JSON:
{"text": "\u5231"} // Value: 刱
Python:
char = '\u5231'
print(char) # Output: 刱
Perl:
my $char = "\x{5231}";
print $char; # Output: 刱
PHP:
$char = "\x{5231}";
echo $char; // Output: 刱
Ruby:
char = "\u{5231}"
puts char # Output: 刱
Rust:
let c = '\u{5231}';
println!("{}", c); // Output: 刱
Go:
char := '\u5231'
fmt.Printf("%c\n", char) // Output: 刱
CSS:
/* CSS content property */
.element::before {
content: "\005231"; /* 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%B1
MD5:
18736b6bc66d5c2bb5003c028ccd8f74
SHA1:
2a4745fcd706b82a6934bb8fd5260e9280846ce8
Base64:
5Yix