Unicode Finder

"膅" U+8185(CJK UNIFIED IDEOGRAPH-8185)

U+8185
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8185

Programming

C
\u8185
JavaScript
\u8185
Java
\u8185
Json
\u8185
Python
\u8185
Perl
\x{8185}
PHP
\x{8185}
Ruby
\u{8185}
Rust
\u{8185}
Go
\u8185

Web

CSS
\008185
HtmlDecimal
膅
HtmlHexadecimal
膅
Url
%E8%86%85

Code

MD5
26fdef181abc5bd44d09f1a9a2bccfef
Sha1
0f4f4985d3302a11577f995e7b1f27fe665c50d1
Base64
6IaF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8185';
console.log(char);  // Output: 膅

Java:

char c = '\u8185';
System.out.println(c);  // Output: 膅

JSON:

{"text": "\u8185"}  // Value: 膅

Python:

char = '\u8185'
print(char)  # Output: 膅

Perl:

my $char = "\x{8185}";
print $char;  # Output: 膅

PHP:

$char = "\x{8185}";
echo $char;  // Output: 膅

Ruby:

char = "\u{8185}"
puts char  # Output: 膅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008185";  /* Display: 膅 */
}

HTML Decimal:

<p>HTML decimal: &#33157;</p>  <!-- Display: 膅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8185;</p>  <!-- Display: 膅 -->

URL Encoding:

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

Encodings

MD5:

26fdef181abc5bd44d09f1a9a2bccfef

SHA1:

0f4f4985d3302a11577f995e7b1f27fe665c50d1

Base64:

6IaF