Unicode Finder

"遦" U+9066(CJK UNIFIED IDEOGRAPH-9066)

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

Programming

C
\u9066
JavaScript
\u9066
Java
\u9066
Json
\u9066
Python
\u9066
Perl
\x{9066}
PHP
\x{9066}
Ruby
\u{9066}
Rust
\u{9066}
Go
\u9066

Web

CSS
\009066
HtmlDecimal
遦
HtmlHexadecimal
遦
Url
%E9%81%A6

Code

MD5
364eda8e477c822a7866f5a2c63d95d1
Sha1
6ddd7946d9a3772cecc341b88f3b4b5f0d063586
Base64
6YGm

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9066';
console.log(char);  // Output: 遦

Java:

char c = '\u9066';
System.out.println(c);  // Output: 遦

JSON:

{"text": "\u9066"}  // Value: 遦

Python:

char = '\u9066'
print(char)  # Output: 遦

Perl:

my $char = "\x{9066}";
print $char;  # Output: 遦

PHP:

$char = "\x{9066}";
echo $char;  // Output: 遦

Ruby:

char = "\u{9066}"
puts char  # Output: 遦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009066";  /* Display: 遦 */
}

HTML Decimal:

<p>HTML decimal: &#36966;</p>  <!-- Display: 遦 -->

HTML Hexadecimal:

<p>HTML hex: &#x9066;</p>  <!-- Display: 遦 -->

URL Encoding:

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

Encodings

MD5:

364eda8e477c822a7866f5a2c63d95d1

SHA1:

6ddd7946d9a3772cecc341b88f3b4b5f0d063586

Base64:

6YGm