C:
char c = '\u7240';
printf("%c\n", c); // Output: 牀
JavaScript:
const char = '\u7240';
console.log(char); // Output: 牀
Java:
char c = '\u7240';
System.out.println(c); // Output: 牀
JSON:
{"text": "\u7240"} // Value: 牀
Python:
char = '\u7240'
print(char) # Output: 牀
Perl:
my $char = "\x{7240}";
print $char; # Output: 牀
PHP:
$char = "\x{7240}";
echo $char; // Output: 牀
Ruby:
char = "\u{7240}"
puts char # Output: 牀
Rust:
let c = '\u{7240}';
println!("{}", c); // Output: 牀
Go:
char := '\u7240'
fmt.Printf("%c\n", char) // Output: 牀
CSS:
/* CSS content property */
.element::before {
content: "\007240"; /* 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%89%80
MD5:
f8f3c1d10fd9dbd2e2e8813d602e6988
SHA1:
44269e218e92628d764db8535c9d3f602fcb3b9e
Base64:
54mA