Unicode Finder

"並" U+4E26(CJK UNIFIED IDEOGRAPH-4E26)

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

Programming

C
\u4E26
JavaScript
\u4E26
Java
\u4E26
Json
\u4E26
Python
\u4E26
Perl
\x{4E26}
PHP
\x{4E26}
Ruby
\u{4E26}
Rust
\u{4E26}
Go
\u4E26

Web

CSS
\004E26
HtmlDecimal
並
HtmlHexadecimal
並
Url
%E4%B8%A6

Code

MD5
90b4f23c283afc8437e379090e66adac
Sha1
6a6639aca49c87cbe5922f67f61d5255bbf11793
Base64
5Lim

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E26';
console.log(char);  // Output: 並

Java:

char c = '\u4E26';
System.out.println(c);  // Output: 並

JSON:

{"text": "\u4E26"}  // Value: 並

Python:

char = '\u4E26'
print(char)  # Output: 並

Perl:

my $char = "\x{4E26}";
print $char;  # Output: 並

PHP:

$char = "\x{4E26}";
echo $char;  // Output: 並

Ruby:

char = "\u{4E26}"
puts char  # Output: 並

Rust:

let c = '\u{4E26}';
println!("{}", c);  // Output: 並

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004E26";  /* Display: 並 */
}

HTML Decimal:

<p>HTML decimal: &#20006;</p>  <!-- Display: 並 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E26;</p>  <!-- Display: 並 -->

URL Encoding:

// 並 URL encoding
https://unicodefinder.com/search.php?query=%E4%B8%A6

Encodings

MD5:

90b4f23c283afc8437e379090e66adac

SHA1:

6a6639aca49c87cbe5922f67f61d5255bbf11793

Base64:

5Lim