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