Unicode Finder

"膿" U+81BF(CJK UNIFIED IDEOGRAPH-81BF)

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

Programming

C
\u81BF
JavaScript
\u81BF
Java
\u81BF
Json
\u81BF
Python
\u81BF
Perl
\x{81BF}
PHP
\x{81BF}
Ruby
\u{81BF}
Rust
\u{81BF}
Go
\u81BF

Web

CSS
\0081BF
HtmlDecimal
膿
HtmlHexadecimal
膿
Url
%E8%86%BF

Code

MD5
65ca8cab3a9d8cd62c589609b6e96407
Sha1
d8f56af33097c51b4b40c43ccb05615703ade0d1
Base64
6Ia/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u81BF';
console.log(char);  // Output: 膿

Java:

char c = '\u81BF';
System.out.println(c);  // Output: 膿

JSON:

{"text": "\u81BF"}  // Value: 膿

Python:

char = '\u81BF'
print(char)  # Output: 膿

Perl:

my $char = "\x{81BF}";
print $char;  # Output: 膿

PHP:

$char = "\x{81BF}";
echo $char;  // Output: 膿

Ruby:

char = "\u{81BF}"
puts char  # Output: 膿

Rust:

let c = '\u{81BF}';
println!("{}", c);  // Output: 膿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0081BF";  /* Display: 膿 */
}

HTML Decimal:

<p>HTML decimal: &#33215;</p>  <!-- Display: 膿 -->

HTML Hexadecimal:

<p>HTML hex: &#x81BF;</p>  <!-- Display: 膿 -->

URL Encoding:

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

Encodings

MD5:

65ca8cab3a9d8cd62c589609b6e96407

SHA1:

d8f56af33097c51b4b40c43ccb05615703ade0d1

Base64:

6Ia/