Unicode Finder

"順" U+9806(CJK UNIFIED IDEOGRAPH-9806)

U+9806
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-9806

Programming

C
\u9806
JavaScript
\u9806
Java
\u9806
Json
\u9806
Python
\u9806
Perl
\x{9806}
PHP
\x{9806}
Ruby
\u{9806}
Rust
\u{9806}
Go
\u9806

Web

CSS
\009806
HtmlDecimal
順
HtmlHexadecimal
順
Url
%E9%A0%86

Code

MD5
b5493c6d5e4d256dccbcc35d66f4f451
Sha1
8659ede7ad48c8f78677924bb5daf7de921d7b32
Base64
6aCG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9806';
console.log(char);  // Output: 順

Java:

char c = '\u9806';
System.out.println(c);  // Output: 順

JSON:

{"text": "\u9806"}  // Value: 順

Python:

char = '\u9806'
print(char)  # Output: 順

Perl:

my $char = "\x{9806}";
print $char;  # Output: 順

PHP:

$char = "\x{9806}";
echo $char;  // Output: 順

Ruby:

char = "\u{9806}"
puts char  # Output: 順

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009806";  /* Display: 順 */
}

HTML Decimal:

<p>HTML decimal: &#38918;</p>  <!-- Display: 順 -->

HTML Hexadecimal:

<p>HTML hex: &#x9806;</p>  <!-- Display: 順 -->

URL Encoding:

// 順 URL encoding
https://unicodefinder.com/search.php?query=%E9%A0%86

Encodings

MD5:

b5493c6d5e4d256dccbcc35d66f4f451

SHA1:

8659ede7ad48c8f78677924bb5daf7de921d7b32

Base64:

6aCG