Unicode Finder

"紿" U+7D3F(CJK UNIFIED IDEOGRAPH-7D3F)

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

Programming

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

Web

CSS
\007D3F
HtmlDecimal
紿
HtmlHexadecimal
紿
Url
%E7%B4%BF

Code

MD5
9d7078dd42fc8885b5fcb61269159727
Sha1
1f8acd442629c030d7b4b40bc7f46d16a2cf5640
Base64
57S/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D3F';
console.log(char);  // Output: 紿

Java:

char c = '\u7D3F';
System.out.println(c);  // Output: 紿

JSON:

{"text": "\u7D3F"}  // Value: 紿

Python:

char = '\u7D3F'
print(char)  # Output: 紿

Perl:

my $char = "\x{7D3F}";
print $char;  # Output: 紿

PHP:

$char = "\x{7D3F}";
echo $char;  // Output: 紿

Ruby:

char = "\u{7D3F}"
puts char  # Output: 紿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32063;</p>  <!-- Display: 紿 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D3F;</p>  <!-- Display: 紿 -->

URL Encoding:

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

Encodings

MD5:

9d7078dd42fc8885b5fcb61269159727

SHA1:

1f8acd442629c030d7b4b40bc7f46d16a2cf5640

Base64:

57S/