Unicode Finder

"併" U+4F75(CJK UNIFIED IDEOGRAPH-4F75)

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

Programming

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

Web

CSS
\004F75
HtmlDecimal
併
HtmlHexadecimal
併
Url
%E4%BD%B5

Code

MD5
18008d77bc5e631640290809c2086cb7
Sha1
4021d04d874edc3c50114f39e11e4a2024ac568a
Base64
5L21

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4F75';
console.log(char);  // Output: 併

Java:

char c = '\u4F75';
System.out.println(c);  // Output: 併

JSON:

{"text": "\u4F75"}  // Value: 併

Python:

char = '\u4F75'
print(char)  # Output: 併

Perl:

my $char = "\x{4F75}";
print $char;  # Output: 併

PHP:

$char = "\x{4F75}";
echo $char;  // Output: 併

Ruby:

char = "\u{4F75}"
puts char  # Output: 併

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20341;</p>  <!-- Display: 併 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F75;</p>  <!-- Display: 併 -->

URL Encoding:

// 併 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%B5

Encodings

MD5:

18008d77bc5e631640290809c2086cb7

SHA1:

4021d04d874edc3c50114f39e11e4a2024ac568a

Base64:

5L21