Unicode Finder

"俚" U+4FDA(CJK UNIFIED IDEOGRAPH-4FDA)

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

Programming

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

Web

CSS
\004FDA
HtmlDecimal
俚
HtmlHexadecimal
俚
Url
%E4%BF%9A

Code

MD5
9470e2b213e27b329e5f7c0919efbfc3
Sha1
e0c70639d795d51a5285877718f2f51f16ce9669
Base64
5L+a

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u4FDA';
console.log(char);  // Output: 俚

Java:

char c = '\u4FDA';
System.out.println(c);  // Output: 俚

JSON:

{"text": "\u4FDA"}  // Value: 俚

Python:

char = '\u4FDA'
print(char)  # Output: 俚

Perl:

my $char = "\x{4FDA}";
print $char;  # Output: 俚

PHP:

$char = "\x{4FDA}";
echo $char;  // Output: 俚

Ruby:

char = "\u{4FDA}"
puts char  # Output: 俚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20442;</p>  <!-- Display: 俚 -->

HTML Hexadecimal:

<p>HTML hex: &#x4FDA;</p>  <!-- Display: 俚 -->

URL Encoding:

// 俚 URL encoding
https://unicodefinder.com/search.php?query=%E4%BF%9A

Encodings

MD5:

9470e2b213e27b329e5f7c0919efbfc3

SHA1:

e0c70639d795d51a5285877718f2f51f16ce9669

Base64:

5L+a