Unicode Finder

"膀" U+8180(CJK UNIFIED IDEOGRAPH-8180)

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

Programming

C
\u8180
JavaScript
\u8180
Java
\u8180
Json
\u8180
Python
\u8180
Perl
\x{8180}
PHP
\x{8180}
Ruby
\u{8180}
Rust
\u{8180}
Go
\u8180

Web

CSS
\008180
HtmlDecimal
膀
HtmlHexadecimal
膀
Url
%E8%86%80

Code

MD5
201d9ee86ded9c03502bf1157f8224b1
Sha1
9a43417f16f807e65feea85cf5ebc24b968a3fd7
Base64
6IaA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8180';
console.log(char);  // Output: 膀

Java:

char c = '\u8180';
System.out.println(c);  // Output: 膀

JSON:

{"text": "\u8180"}  // Value: 膀

Python:

char = '\u8180'
print(char)  # Output: 膀

Perl:

my $char = "\x{8180}";
print $char;  # Output: 膀

PHP:

$char = "\x{8180}";
echo $char;  // Output: 膀

Ruby:

char = "\u{8180}"
puts char  # Output: 膀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008180";  /* Display: 膀 */
}

HTML Decimal:

<p>HTML decimal: &#33152;</p>  <!-- Display: 膀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8180;</p>  <!-- Display: 膀 -->

URL Encoding:

// 膀 URL encoding
https://unicodefinder.com/search.php?query=%E8%86%80

Encodings

MD5:

201d9ee86ded9c03502bf1157f8224b1

SHA1:

9a43417f16f807e65feea85cf5ebc24b968a3fd7

Base64:

6IaA