Unicode Finder

"遖" U+9056(CJK UNIFIED IDEOGRAPH-9056)

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

Programming

C
\u9056
JavaScript
\u9056
Java
\u9056
Json
\u9056
Python
\u9056
Perl
\x{9056}
PHP
\x{9056}
Ruby
\u{9056}
Rust
\u{9056}
Go
\u9056

Web

CSS
\009056
HtmlDecimal
遖
HtmlHexadecimal
遖
Url
%E9%81%96

Code

MD5
fa74504533a3a0bbe3ae7d0c747890cc
Sha1
e89b50c0a9484d29fd496cdb92679af162bec118
Base64
6YGW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9056';
console.log(char);  // Output: 遖

Java:

char c = '\u9056';
System.out.println(c);  // Output: 遖

JSON:

{"text": "\u9056"}  // Value: 遖

Python:

char = '\u9056'
print(char)  # Output: 遖

Perl:

my $char = "\x{9056}";
print $char;  # Output: 遖

PHP:

$char = "\x{9056}";
echo $char;  // Output: 遖

Ruby:

char = "\u{9056}"
puts char  # Output: 遖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009056";  /* Display: 遖 */
}

HTML Decimal:

<p>HTML decimal: &#36950;</p>  <!-- Display: 遖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9056;</p>  <!-- Display: 遖 -->

URL Encoding:

// 遖 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%96

Encodings

MD5:

fa74504533a3a0bbe3ae7d0c747890cc

SHA1:

e89b50c0a9484d29fd496cdb92679af162bec118

Base64:

6YGW