Unicode Finder

"膑" U+8191(CJK UNIFIED IDEOGRAPH-8191)

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

Programming

C
\u8191
JavaScript
\u8191
Java
\u8191
Json
\u8191
Python
\u8191
Perl
\x{8191}
PHP
\x{8191}
Ruby
\u{8191}
Rust
\u{8191}
Go
\u8191

Web

CSS
\008191
HtmlDecimal
膑
HtmlHexadecimal
膑
Url
%E8%86%91

Code

MD5
c04a31c4b6c3b319e827688f51db82dd
Sha1
8b7faf29763d7a3e332c37817fbb580ed33d1abc
Base64
6IaR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8191';
console.log(char);  // Output: 膑

Java:

char c = '\u8191';
System.out.println(c);  // Output: 膑

JSON:

{"text": "\u8191"}  // Value: 膑

Python:

char = '\u8191'
print(char)  # Output: 膑

Perl:

my $char = "\x{8191}";
print $char;  # Output: 膑

PHP:

$char = "\x{8191}";
echo $char;  // Output: 膑

Ruby:

char = "\u{8191}"
puts char  # Output: 膑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008191";  /* Display: 膑 */
}

HTML Decimal:

<p>HTML decimal: &#33169;</p>  <!-- Display: 膑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8191;</p>  <!-- Display: 膑 -->

URL Encoding:

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

Encodings

MD5:

c04a31c4b6c3b319e827688f51db82dd

SHA1:

8b7faf29763d7a3e332c37817fbb580ed33d1abc

Base64:

6IaR