C:
char c = '\u8925';
printf("%c\n", c); // Output: 褥
JavaScript:
const char = '\u8925';
console.log(char); // Output: 褥
Java:
char c = '\u8925';
System.out.println(c); // Output: 褥
JSON:
{"text": "\u8925"} // Value: 褥
Python:
char = '\u8925'
print(char) # Output: 褥
Perl:
my $char = "\x{8925}";
print $char; # Output: 褥
PHP:
$char = "\x{8925}";
echo $char; // Output: 褥
Ruby:
char = "\u{8925}"
puts char # Output: 褥
Rust:
let c = '\u{8925}';
println!("{}", c); // Output: 褥
Go:
char := '\u8925'
fmt.Printf("%c\n", char) // Output: 褥
CSS:
/* CSS content property */
.element::before {
content: "\008925"; /* 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%A5
MD5:
3a8e1181ba191c204661ff461536de9a
SHA1:
5701d594bd4fbbd749df5de7630fdda43f4a7c41
Base64:
6KSl