C:
char c = '\u5232';
printf("%c\n", c); // Output: 刲
JavaScript:
const char = '\u5232';
console.log(char); // Output: 刲
Java:
char c = '\u5232';
System.out.println(c); // Output: 刲
JSON:
{"text": "\u5232"} // Value: 刲
Python:
char = '\u5232'
print(char) # Output: 刲
Perl:
my $char = "\x{5232}";
print $char; # Output: 刲
PHP:
$char = "\x{5232}";
echo $char; // Output: 刲
Ruby:
char = "\u{5232}"
puts char # Output: 刲
Rust:
let c = '\u{5232}';
println!("{}", c); // Output: 刲
Go:
char := '\u5232'
fmt.Printf("%c\n", char) // Output: 刲
CSS:
/* CSS content property */
.element::before {
content: "\005232"; /* 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%B2
MD5:
700c545c853e7645ba0fd492da8e189b
SHA1:
ee4b956528a881c1a5978007341a29d30ef4c1fc
Base64:
5Yiy