C:
char c = '\u5243';
printf("%c\n", c); // Output: 剃
JavaScript:
const char = '\u5243';
console.log(char); // Output: 剃
Java:
char c = '\u5243';
System.out.println(c); // Output: 剃
JSON:
{"text": "\u5243"} // Value: 剃
Python:
char = '\u5243'
print(char) # Output: 剃
Perl:
my $char = "\x{5243}";
print $char; # Output: 剃
PHP:
$char = "\x{5243}";
echo $char; // Output: 剃
Ruby:
char = "\u{5243}"
puts char # Output: 剃
Rust:
let c = '\u{5243}';
println!("{}", c); // Output: 剃
Go:
char := '\u5243'
fmt.Printf("%c\n", char) // Output: 剃
CSS:
/* CSS content property */
.element::before {
content: "\005243"; /* 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%83
MD5:
2fd4f44908b6825fb5d0987b09e356ed
SHA1:
14c53ecd49b06774eee7924bced0a76eff9e1ea2
Base64:
5YmD