Unicode Finder

"遈" U+9048(CJK UNIFIED IDEOGRAPH-9048)

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

Programming

C
\u9048
JavaScript
\u9048
Java
\u9048
Json
\u9048
Python
\u9048
Perl
\x{9048}
PHP
\x{9048}
Ruby
\u{9048}
Rust
\u{9048}
Go
\u9048

Web

CSS
\009048
HtmlDecimal
遈
HtmlHexadecimal
遈
Url
%E9%81%88

Code

MD5
a1a298d1415aa58ed2528478976c0f0a
Sha1
f63112ccf6435678c428750501175314f2fbcd8b
Base64
6YGI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9048';
console.log(char);  // Output: 遈

Java:

char c = '\u9048';
System.out.println(c);  // Output: 遈

JSON:

{"text": "\u9048"}  // Value: 遈

Python:

char = '\u9048'
print(char)  # Output: 遈

Perl:

my $char = "\x{9048}";
print $char;  # Output: 遈

PHP:

$char = "\x{9048}";
echo $char;  // Output: 遈

Ruby:

char = "\u{9048}"
puts char  # Output: 遈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009048";  /* Display: 遈 */
}

HTML Decimal:

<p>HTML decimal: &#36936;</p>  <!-- Display: 遈 -->

HTML Hexadecimal:

<p>HTML hex: &#x9048;</p>  <!-- Display: 遈 -->

URL Encoding:

// 遈 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%88

Encodings

MD5:

a1a298d1415aa58ed2528478976c0f0a

SHA1:

f63112ccf6435678c428750501175314f2fbcd8b

Base64:

6YGI