Unicode Finder

"笺" U+7B3A(CJK UNIFIED IDEOGRAPH-7B3A)

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

Programming

C
\u7B3A
JavaScript
\u7B3A
Java
\u7B3A
Json
\u7B3A
Python
\u7B3A
Perl
\x{7B3A}
PHP
\x{7B3A}
Ruby
\u{7B3A}
Rust
\u{7B3A}
Go
\u7B3A

Web

CSS
\007B3A
HtmlDecimal
笺
HtmlHexadecimal
笺
Url
%E7%AC%BA

Code

MD5
1a5a84ea4e44bc74ab34b4a10f53bce7
Sha1
5971808ca578c1a0f3e57fde96d330281ae8fe61
Base64
56y6

使用示例

Programming Languages

C:

char c = '\u7B3A';
printf("%c\n", c);  // Output: 笺

JavaScript:

const char = '\u7B3A';
console.log(char);  // Output: 笺

Java:

char c = '\u7B3A';
System.out.println(c);  // Output: 笺

JSON:

{"text": "\u7B3A"}  // Value: 笺

Python:

char = '\u7B3A'
print(char)  # Output: 笺

Perl:

my $char = "\x{7B3A}";
print $char;  # Output: 笺

PHP:

$char = "\x{7B3A}";
echo $char;  // Output: 笺

Ruby:

char = "\u{7B3A}"
puts char  # Output: 笺

Rust:

let c = '\u{7B3A}';
println!("{}", c);  // Output: 笺

Go:

char := '\u7B3A'
fmt.Printf("%c\n", char)  // Output: 笺

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007B3A";  /* Display: 笺 */
}

HTML Decimal:

<p>HTML decimal: &#31546;</p>  <!-- Display: 笺 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B3A;</p>  <!-- Display: 笺 -->

URL Encoding:

// 笺 URL encoding
https://unicodefinder.com/search.php?query=%E7%AC%BA

Encodings

MD5:

1a5a84ea4e44bc74ab34b4a10f53bce7

SHA1:

5971808ca578c1a0f3e57fde96d330281ae8fe61

Base64:

56y6