C:
char c = '\u7573';
printf("%c\n", c); // Output: 畳
JavaScript:
const char = '\u7573';
console.log(char); // Output: 畳
Java:
char c = '\u7573';
System.out.println(c); // Output: 畳
JSON:
{"text": "\u7573"} // Value: 畳
Python:
char = '\u7573'
print(char) # Output: 畳
Perl:
my $char = "\x{7573}";
print $char; # Output: 畳
PHP:
$char = "\x{7573}";
echo $char; // Output: 畳
Ruby:
char = "\u{7573}"
puts char # Output: 畳
Rust:
let c = '\u{7573}';
println!("{}", c); // Output: 畳
Go:
char := '\u7573'
fmt.Printf("%c\n", char) // Output: 畳
CSS:
/* CSS content property */
.element::before {
content: "\007573"; /* 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=%E7%95%B3
MD5:
c3bbb3474cf9c1567981b63d243f34b1
SHA1:
d5ac2f996349de1e700fc9128b24e8e24ddd3c1e
Base64:
55Wz