C:
char c = '\u5248';
printf("%c\n", c); // Output: 剈
JavaScript:
const char = '\u5248';
console.log(char); // Output: 剈
Java:
char c = '\u5248';
System.out.println(c); // Output: 剈
JSON:
{"text": "\u5248"} // Value: 剈
Python:
char = '\u5248'
print(char) # Output: 剈
Perl:
my $char = "\x{5248}";
print $char; # Output: 剈
PHP:
$char = "\x{5248}";
echo $char; // Output: 剈
Ruby:
char = "\u{5248}"
puts char # Output: 剈
Rust:
let c = '\u{5248}';
println!("{}", c); // Output: 剈
Go:
char := '\u5248'
fmt.Printf("%c\n", char) // Output: 剈
CSS:
/* CSS content property */
.element::before {
content: "\005248"; /* 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%89%88
MD5:
b01fd2865d59dcfacc9e6248884bdd14
SHA1:
3d0703be78ac773e218ce990d3bdf1d4ee920e10
Base64:
5YmI