Unicode Finder

"笿" U+7B3F(CJK UNIFIED IDEOGRAPH-7B3F)

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

Programming

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

Web

CSS
\007B3F
HtmlDecimal
笿
HtmlHexadecimal
笿
Url
%E7%AC%BF

Code

MD5
d78e445c442dcc6219ac537e1ae516ed
Sha1
542407fd121e9c8fe7bcb61d4d63de72465e5775
Base64
56y/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B3F';
console.log(char);  // Output: 笿

Java:

char c = '\u7B3F';
System.out.println(c);  // Output: 笿

JSON:

{"text": "\u7B3F"}  // Value: 笿

Python:

char = '\u7B3F'
print(char)  # Output: 笿

Perl:

my $char = "\x{7B3F}";
print $char;  # Output: 笿

PHP:

$char = "\x{7B3F}";
echo $char;  // Output: 笿

Ruby:

char = "\u{7B3F}"
puts char  # Output: 笿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31551;</p>  <!-- Display: 笿 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B3F;</p>  <!-- Display: 笿 -->

URL Encoding:

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

Encodings

MD5:

d78e445c442dcc6219ac537e1ae516ed

SHA1:

542407fd121e9c8fe7bcb61d4d63de72465e5775

Base64:

56y/