Unicode Finder

"畳" U+7573(CJK UNIFIED IDEOGRAPH-7573)

U+7573
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7573

Programming

C
\u7573
JavaScript
\u7573
Java
\u7573
Json
\u7573
Python
\u7573
Perl
\x{7573}
PHP
\x{7573}
Ruby
\u{7573}
Rust
\u{7573}
Go
\u7573

Web

CSS
\007573
HtmlDecimal
畳
HtmlHexadecimal
畳
Url
%E7%95%B3

Code

MD5
c3bbb3474cf9c1567981b63d243f34b1
Sha1
d5ac2f996349de1e700fc9128b24e8e24ddd3c1e
Base64
55Wz

使用示例

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007573";  /* Display: 畳 */
}

HTML Decimal:

<p>HTML decimal: &#30067;</p>  <!-- Display: 畳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7573;</p>  <!-- Display: 畳 -->

URL Encoding:

// 畳 URL encoding
https://unicodefinder.com/search.php?query=%E7%95%B3

Encodings

MD5:

c3bbb3474cf9c1567981b63d243f34b1

SHA1:

d5ac2f996349de1e700fc9128b24e8e24ddd3c1e

Base64:

55Wz