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