Unicode Finder

"逰" U+9030(CJK UNIFIED IDEOGRAPH-9030)

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

Programming

C
\u9030
JavaScript
\u9030
Java
\u9030
Json
\u9030
Python
\u9030
Perl
\x{9030}
PHP
\x{9030}
Ruby
\u{9030}
Rust
\u{9030}
Go
\u9030

Web

CSS
\009030
HtmlDecimal
逰
HtmlHexadecimal
逰
Url
%E9%80%B0

Code

MD5
21cd70b69ead7b9356b6f3acae212a56
Sha1
3c59a0c9be53556230cdf9e0bf702300df0930b0
Base64
6YCw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9030';
console.log(char);  // Output: 逰

Java:

char c = '\u9030';
System.out.println(c);  // Output: 逰

JSON:

{"text": "\u9030"}  // Value: 逰

Python:

char = '\u9030'
print(char)  # Output: 逰

Perl:

my $char = "\x{9030}";
print $char;  # Output: 逰

PHP:

$char = "\x{9030}";
echo $char;  // Output: 逰

Ruby:

char = "\u{9030}"
puts char  # Output: 逰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009030";  /* Display: 逰 */
}

HTML Decimal:

<p>HTML decimal: &#36912;</p>  <!-- Display: 逰 -->

HTML Hexadecimal:

<p>HTML hex: &#x9030;</p>  <!-- Display: 逰 -->

URL Encoding:

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

Encodings

MD5:

21cd70b69ead7b9356b6f3acae212a56

SHA1:

3c59a0c9be53556230cdf9e0bf702300df0930b0

Base64:

6YCw