Unicode Finder

"逇" U+9007(CJK UNIFIED IDEOGRAPH-9007)

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

Programming

C
\u9007
JavaScript
\u9007
Java
\u9007
Json
\u9007
Python
\u9007
Perl
\x{9007}
PHP
\x{9007}
Ruby
\u{9007}
Rust
\u{9007}
Go
\u9007

Web

CSS
\009007
HtmlDecimal
逇
HtmlHexadecimal
逇
Url
%E9%80%87

Code

MD5
684a09a1f66af6f2a52a2ced5e60e15a
Sha1
7cee900271964f651426b35c196e0101df630cdc
Base64
6YCH

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9007';
console.log(char);  // Output: 逇

Java:

char c = '\u9007';
System.out.println(c);  // Output: 逇

JSON:

{"text": "\u9007"}  // Value: 逇

Python:

char = '\u9007'
print(char)  # Output: 逇

Perl:

my $char = "\x{9007}";
print $char;  # Output: 逇

PHP:

$char = "\x{9007}";
echo $char;  // Output: 逇

Ruby:

char = "\u{9007}"
puts char  # Output: 逇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009007";  /* Display: 逇 */
}

HTML Decimal:

<p>HTML decimal: &#36871;</p>  <!-- Display: 逇 -->

HTML Hexadecimal:

<p>HTML hex: &#x9007;</p>  <!-- Display: 逇 -->

URL Encoding:

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

Encodings

MD5:

684a09a1f66af6f2a52a2ced5e60e15a

SHA1:

7cee900271964f651426b35c196e0101df630cdc

Base64:

6YCH