Unicode Finder

"閁" U+9581(CJK UNIFIED IDEOGRAPH-9581)

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

Programming

C
\u9581
JavaScript
\u9581
Java
\u9581
Json
\u9581
Python
\u9581
Perl
\x{9581}
PHP
\x{9581}
Ruby
\u{9581}
Rust
\u{9581}
Go
\u9581

Web

CSS
\009581
HtmlDecimal
閁
HtmlHexadecimal
閁
Url
%E9%96%81

Code

MD5
d8254e74741c086f4f8cc959504091c4
Sha1
b828ca158d6b50b4cfd45ad61132106fc036a415
Base64
6ZaB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9581';
console.log(char);  // Output: 閁

Java:

char c = '\u9581';
System.out.println(c);  // Output: 閁

JSON:

{"text": "\u9581"}  // Value: 閁

Python:

char = '\u9581'
print(char)  # Output: 閁

Perl:

my $char = "\x{9581}";
print $char;  # Output: 閁

PHP:

$char = "\x{9581}";
echo $char;  // Output: 閁

Ruby:

char = "\u{9581}"
puts char  # Output: 閁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009581";  /* Display: 閁 */
}

HTML Decimal:

<p>HTML decimal: &#38273;</p>  <!-- Display: 閁 -->

HTML Hexadecimal:

<p>HTML hex: &#x9581;</p>  <!-- Display: 閁 -->

URL Encoding:

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

Encodings

MD5:

d8254e74741c086f4f8cc959504091c4

SHA1:

b828ca158d6b50b4cfd45ad61132106fc036a415

Base64:

6ZaB