Unicode Finder

"阧" U+9627(CJK UNIFIED IDEOGRAPH-9627)

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

Programming

C
\u9627
JavaScript
\u9627
Java
\u9627
Json
\u9627
Python
\u9627
Perl
\x{9627}
PHP
\x{9627}
Ruby
\u{9627}
Rust
\u{9627}
Go
\u9627

Web

CSS
\009627
HtmlDecimal
阧
HtmlHexadecimal
阧
Url
%E9%98%A7

Code

MD5
cf2fb4c02259e078d80ebf3f95ebb272
Sha1
649d83ba9caf6d8d90fe6247b9719f8883429891
Base64
6Zin

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9627';
console.log(char);  // Output: 阧

Java:

char c = '\u9627';
System.out.println(c);  // Output: 阧

JSON:

{"text": "\u9627"}  // Value: 阧

Python:

char = '\u9627'
print(char)  # Output: 阧

Perl:

my $char = "\x{9627}";
print $char;  # Output: 阧

PHP:

$char = "\x{9627}";
echo $char;  // Output: 阧

Ruby:

char = "\u{9627}"
puts char  # Output: 阧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009627";  /* Display: 阧 */
}

HTML Decimal:

<p>HTML decimal: &#38439;</p>  <!-- Display: 阧 -->

HTML Hexadecimal:

<p>HTML hex: &#x9627;</p>  <!-- Display: 阧 -->

URL Encoding:

// 阧 URL encoding
https://unicodefinder.com/search.php?query=%E9%98%A7

Encodings

MD5:

cf2fb4c02259e078d80ebf3f95ebb272

SHA1:

649d83ba9caf6d8d90fe6247b9719f8883429891

Base64:

6Zin