C:
char c = '\u5352';
printf("%c\n", c); // Output: 卒
JavaScript:
const char = '\u5352';
console.log(char); // Output: 卒
Java:
char c = '\u5352';
System.out.println(c); // Output: 卒
JSON:
{"text": "\u5352"} // Value: 卒
Python:
char = '\u5352'
print(char) # Output: 卒
Perl:
my $char = "\x{5352}";
print $char; # Output: 卒
PHP:
$char = "\x{5352}";
echo $char; // Output: 卒
Ruby:
char = "\u{5352}"
puts char # Output: 卒
Rust:
let c = '\u{5352}';
println!("{}", c); // Output: 卒
Go:
char := '\u5352'
fmt.Printf("%c\n", char) // Output: 卒
CSS:
/* CSS content property */
.element::before {
content: "\005352"; /* 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%8D%92
MD5:
f7750588254591f62acfdda132ffeaab
SHA1:
fd120d4f173cc4b2636bd9f08ba4f0eb88694745
Base64:
5Y2S