Unicode Finder

"牀" U+7240(CJK UNIFIED IDEOGRAPH-7240)

U+7240
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7240

Programming

C
\u7240
JavaScript
\u7240
Java
\u7240
Json
\u7240
Python
\u7240
Perl
\x{7240}
PHP
\x{7240}
Ruby
\u{7240}
Rust
\u{7240}
Go
\u7240

Web

CSS
\007240
HtmlDecimal
牀
HtmlHexadecimal
牀
Url
%E7%89%80

Code

MD5
f8f3c1d10fd9dbd2e2e8813d602e6988
Sha1
44269e218e92628d764db8535c9d3f602fcb3b9e
Base64
54mA

使用範例

Programming Languages

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: 牀

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007240";  /* Display: 牀 */
}

HTML Decimal:

<p>HTML decimal: &#29248;</p>  <!-- Display: 牀 -->

HTML Hexadecimal:

<p>HTML hex: &#x7240;</p>  <!-- Display: 牀 -->

URL Encoding:

// 牀 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%80

Encodings

MD5:

f8f3c1d10fd9dbd2e2e8813d602e6988

SHA1:

44269e218e92628d764db8535c9d3f602fcb3b9e

Base64:

54mA