Unicode Finder

"逨" U+9028(CJK UNIFIED IDEOGRAPH-9028)

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

Programming

C
\u9028
JavaScript
\u9028
Java
\u9028
Json
\u9028
Python
\u9028
Perl
\x{9028}
PHP
\x{9028}
Ruby
\u{9028}
Rust
\u{9028}
Go
\u9028

Web

CSS
\009028
HtmlDecimal
逨
HtmlHexadecimal
逨
Url
%E9%80%A8

Code

MD5
6a4822948d3a02fded3f5940b42f24ec
Sha1
cca255203c3a1b85fb45e303aa8126a5a6c65218
Base64
6YCo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9028';
console.log(char);  // Output: 逨

Java:

char c = '\u9028';
System.out.println(c);  // Output: 逨

JSON:

{"text": "\u9028"}  // Value: 逨

Python:

char = '\u9028'
print(char)  # Output: 逨

Perl:

my $char = "\x{9028}";
print $char;  # Output: 逨

PHP:

$char = "\x{9028}";
echo $char;  // Output: 逨

Ruby:

char = "\u{9028}"
puts char  # Output: 逨

Rust:

let c = '\u{9028}';
println!("{}", c);  // Output: 逨

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009028";  /* Display: 逨 */
}

HTML Decimal:

<p>HTML decimal: &#36904;</p>  <!-- Display: 逨 -->

HTML Hexadecimal:

<p>HTML hex: &#x9028;</p>  <!-- Display: 逨 -->

URL Encoding:

// 逨 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%A8

Encodings

MD5:

6a4822948d3a02fded3f5940b42f24ec

SHA1:

cca255203c3a1b85fb45e303aa8126a5a6c65218

Base64:

6YCo