Unicode Finder

"逤" U+9024(CJK UNIFIED IDEOGRAPH-9024)

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

Programming

C
\u9024
JavaScript
\u9024
Java
\u9024
Json
\u9024
Python
\u9024
Perl
\x{9024}
PHP
\x{9024}
Ruby
\u{9024}
Rust
\u{9024}
Go
\u9024

Web

CSS
\009024
HtmlDecimal
逤
HtmlHexadecimal
逤
Url
%E9%80%A4

Code

MD5
36fb853e3ed42017f35f0c2e8c5fc12e
Sha1
24fa9a1116b39c5c33df667649bc443ccec4d5ae
Base64
6YCk

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9024';
console.log(char);  // Output: 逤

Java:

char c = '\u9024';
System.out.println(c);  // Output: 逤

JSON:

{"text": "\u9024"}  // Value: 逤

Python:

char = '\u9024'
print(char)  # Output: 逤

Perl:

my $char = "\x{9024}";
print $char;  # Output: 逤

PHP:

$char = "\x{9024}";
echo $char;  // Output: 逤

Ruby:

char = "\u{9024}"
puts char  # Output: 逤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009024";  /* Display: 逤 */
}

HTML Decimal:

<p>HTML decimal: &#36900;</p>  <!-- Display: 逤 -->

HTML Hexadecimal:

<p>HTML hex: &#x9024;</p>  <!-- Display: 逤 -->

URL Encoding:

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

Encodings

MD5:

36fb853e3ed42017f35f0c2e8c5fc12e

SHA1:

24fa9a1116b39c5c33df667649bc443ccec4d5ae

Base64:

6YCk