Unicode Finder

"菌" U+83CC(CJK UNIFIED IDEOGRAPH-83CC)

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

Programming

C
\u83CC
JavaScript
\u83CC
Java
\u83CC
Json
\u83CC
Python
\u83CC
Perl
\x{83CC}
PHP
\x{83CC}
Ruby
\u{83CC}
Rust
\u{83CC}
Go
\u83CC

Web

CSS
\0083CC
HtmlDecimal
菌
HtmlHexadecimal
菌
Url
%E8%8F%8C

Code

MD5
37523bf765ba4ce78d28bd812a3bdbc4
Sha1
f9c270b9f16f9a875fdf6e718b66ba4c10060a83
Base64
6I+M

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83CC';
console.log(char);  // Output: 菌

Java:

char c = '\u83CC';
System.out.println(c);  // Output: 菌

JSON:

{"text": "\u83CC"}  // Value: 菌

Python:

char = '\u83CC'
print(char)  # Output: 菌

Perl:

my $char = "\x{83CC}";
print $char;  # Output: 菌

PHP:

$char = "\x{83CC}";
echo $char;  // Output: 菌

Ruby:

char = "\u{83CC}"
puts char  # Output: 菌

Rust:

let c = '\u{83CC}';
println!("{}", c);  // Output: 菌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0083CC";  /* Display: 菌 */
}

HTML Decimal:

<p>HTML decimal: &#33740;</p>  <!-- Display: 菌 -->

HTML Hexadecimal:

<p>HTML hex: &#x83CC;</p>  <!-- Display: 菌 -->

URL Encoding:

// 菌 URL encoding
https://unicodefinder.com/search.php?query=%E8%8F%8C

Encodings

MD5:

37523bf765ba4ce78d28bd812a3bdbc4

SHA1:

f9c270b9f16f9a875fdf6e718b66ba4c10060a83

Base64:

6I+M