Unicode Finder

"菇" U+83C7(CJK UNIFIED IDEOGRAPH-83C7)

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

Programming

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

Web

CSS
\0083C7
HtmlDecimal
菇
HtmlHexadecimal
菇
Url
%E8%8F%87

Code

MD5
a1ef207737a3a1c5183582b3b4806765
Sha1
2b3db13931f3574bb6b64acf4e005d29a4a6f1ef
Base64
6I+H

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C7';
console.log(char);  // Output: 菇

Java:

char c = '\u83C7';
System.out.println(c);  // Output: 菇

JSON:

{"text": "\u83C7"}  // Value: 菇

Python:

char = '\u83C7'
print(char)  # Output: 菇

Perl:

my $char = "\x{83C7}";
print $char;  # Output: 菇

PHP:

$char = "\x{83C7}";
echo $char;  // Output: 菇

Ruby:

char = "\u{83C7}"
puts char  # Output: 菇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33735;</p>  <!-- Display: 菇 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C7;</p>  <!-- Display: 菇 -->

URL Encoding:

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

Encodings

MD5:

a1ef207737a3a1c5183582b3b4806765

SHA1:

2b3db13931f3574bb6b64acf4e005d29a4a6f1ef

Base64:

6I+H