C:
char c = '\u5270';
printf("%c\n", c); // Output: 剰
JavaScript:
const char = '\u5270';
console.log(char); // Output: 剰
Java:
char c = '\u5270';
System.out.println(c); // Output: 剰
JSON:
{"text": "\u5270"} // Value: 剰
Python:
char = '\u5270'
print(char) # Output: 剰
Perl:
my $char = "\x{5270}";
print $char; # Output: 剰
PHP:
$char = "\x{5270}";
echo $char; // Output: 剰
Ruby:
char = "\u{5270}"
puts char # Output: 剰
Rust:
let c = '\u{5270}';
println!("{}", c); // Output: 剰
Go:
char := '\u5270'
fmt.Printf("%c\n", char) // Output: 剰
CSS:
/* CSS content property */
.element::before {
content: "\005270"; /* 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%B0
MD5:
cd4f832a13cb332e70fb326fad1cdaae
SHA1:
b64c281650130c08586a0dda6c5e9ac1aa04dae2
Base64:
5Ymw