Unicode Finder

"俾" U+4FFE(CJK UNIFIED IDEOGRAPH-4FFE)

U+4FFE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-4FFE

Programming

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

Web

CSS
\004FFE
HtmlDecimal
俾
HtmlHexadecimal
俾
Url
%E4%BF%BE

Code

MD5
7aacfbc73d19f2b788128c77d4703981
Sha1
382b8a91b9506d4010a5fe2a538f6a43393bbd8f
Base64
5L++

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4FFE';
console.log(char);  // Output: 俾

Java:

char c = '\u4FFE';
System.out.println(c);  // Output: 俾

JSON:

{"text": "\u4FFE"}  // Value: 俾

Python:

char = '\u4FFE'
print(char)  # Output: 俾

Perl:

my $char = "\x{4FFE}";
print $char;  # Output: 俾

PHP:

$char = "\x{4FFE}";
echo $char;  // Output: 俾

Ruby:

char = "\u{4FFE}"
puts char  # Output: 俾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20478;</p>  <!-- Display: 俾 -->

HTML Hexadecimal:

<p>HTML hex: &#x4FFE;</p>  <!-- Display: 俾 -->

URL Encoding:

// 俾 URL encoding
https://unicodefinder.com/search.php?query=%E4%BF%BE

Encodings

MD5:

7aacfbc73d19f2b788128c77d4703981

SHA1:

382b8a91b9506d4010a5fe2a538f6a43393bbd8f

Base64:

5L++