C:
char c = '\u8932';
printf("%c\n", c); // Output: 褲
JavaScript:
const char = '\u8932';
console.log(char); // Output: 褲
Java:
char c = '\u8932';
System.out.println(c); // Output: 褲
JSON:
{"text": "\u8932"} // Value: 褲
Python:
char = '\u8932'
print(char) # Output: 褲
Perl:
my $char = "\x{8932}";
print $char; # Output: 褲
PHP:
$char = "\x{8932}";
echo $char; // Output: 褲
Ruby:
char = "\u{8932}"
puts char # Output: 褲
Rust:
let c = '\u{8932}';
println!("{}", c); // Output: 褲
Go:
char := '\u8932'
fmt.Printf("%c\n", char) // Output: 褲
CSS:
/* CSS content property */
.element::before {
content: "\008932"; /* 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=%E8%A4%B2
MD5:
ed8dd006e8cda77ded23b22b0bef8ee0
SHA1:
66c790c60bf7bdf34eac64503556776bffca6fb2
Base64:
6KSy