Unicode Finder

"邐" U+9090(CJK UNIFIED IDEOGRAPH-9090)

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

Programming

C
\u9090
JavaScript
\u9090
Java
\u9090
Json
\u9090
Python
\u9090
Perl
\x{9090}
PHP
\x{9090}
Ruby
\u{9090}
Rust
\u{9090}
Go
\u9090

Web

CSS
\009090
HtmlDecimal
邐
HtmlHexadecimal
邐
Url
%E9%82%90

Code

MD5
97305b8fb0fc4fbd8a9d8f347cb27a5d
Sha1
a26ac2bf1010208993621b0e5978e5b6b76efb64
Base64
6YKQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9090';
console.log(char);  // Output: 邐

Java:

char c = '\u9090';
System.out.println(c);  // Output: 邐

JSON:

{"text": "\u9090"}  // Value: 邐

Python:

char = '\u9090'
print(char)  # Output: 邐

Perl:

my $char = "\x{9090}";
print $char;  # Output: 邐

PHP:

$char = "\x{9090}";
echo $char;  // Output: 邐

Ruby:

char = "\u{9090}"
puts char  # Output: 邐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009090";  /* Display: 邐 */
}

HTML Decimal:

<p>HTML decimal: &#37008;</p>  <!-- Display: 邐 -->

HTML Hexadecimal:

<p>HTML hex: &#x9090;</p>  <!-- Display: 邐 -->

URL Encoding:

// 邐 URL encoding
https://unicodefinder.com/search.php?query=%E9%82%90

Encodings

MD5:

97305b8fb0fc4fbd8a9d8f347cb27a5d

SHA1:

a26ac2bf1010208993621b0e5978e5b6b76efb64

Base64:

6YKQ