C:
char c = '\u5233';
printf("%c\n", c); // Output: 刳
JavaScript:
const char = '\u5233';
console.log(char); // Output: 刳
Java:
char c = '\u5233';
System.out.println(c); // Output: 刳
JSON:
{"text": "\u5233"} // Value: 刳
Python:
char = '\u5233'
print(char) # Output: 刳
Perl:
my $char = "\x{5233}";
print $char; # Output: 刳
PHP:
$char = "\x{5233}";
echo $char; // Output: 刳
Ruby:
char = "\u{5233}"
puts char # Output: 刳
Rust:
let c = '\u{5233}';
println!("{}", c); // Output: 刳
Go:
char := '\u5233'
fmt.Printf("%c\n", char) // Output: 刳
CSS:
/* CSS content property */
.element::before {
content: "\005233"; /* 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%B3
MD5:
c73b74a2ffbd61c50efbebb84d6bbb5c
SHA1:
4e384856fea6fb7cb136e5569a562ae1420aacff
Base64:
5Yiz