Unicode Finder

"逡" U+9021(CJK UNIFIED IDEOGRAPH-9021)

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

Programming

C
\u9021
JavaScript
\u9021
Java
\u9021
Json
\u9021
Python
\u9021
Perl
\x{9021}
PHP
\x{9021}
Ruby
\u{9021}
Rust
\u{9021}
Go
\u9021

Web

CSS
\009021
HtmlDecimal
逡
HtmlHexadecimal
逡
Url
%E9%80%A1

Code

MD5
7a2185839625c7cfcabab6ac1433c18d
Sha1
376c6c6326939931accbc8768e670ccf30df65eb
Base64
6YCh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9021';
console.log(char);  // Output: 逡

Java:

char c = '\u9021';
System.out.println(c);  // Output: 逡

JSON:

{"text": "\u9021"}  // Value: 逡

Python:

char = '\u9021'
print(char)  # Output: 逡

Perl:

my $char = "\x{9021}";
print $char;  # Output: 逡

PHP:

$char = "\x{9021}";
echo $char;  // Output: 逡

Ruby:

char = "\u{9021}"
puts char  # Output: 逡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009021";  /* Display: 逡 */
}

HTML Decimal:

<p>HTML decimal: &#36897;</p>  <!-- Display: 逡 -->

HTML Hexadecimal:

<p>HTML hex: &#x9021;</p>  <!-- Display: 逡 -->

URL Encoding:

// 逡 URL encoding
https://unicodefinder.com/search.php?query=%E9%80%A1

Encodings

MD5:

7a2185839625c7cfcabab6ac1433c18d

SHA1:

376c6c6326939931accbc8768e670ccf30df65eb

Base64:

6YCh