Unicode Finder

"菬" U+83EC(CJK UNIFIED IDEOGRAPH-83EC)

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

Programming

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

Web

CSS
\0083EC
HtmlDecimal
菬
HtmlHexadecimal
菬
Url
%E8%8F%AC

Code

MD5
dca6cc98858128f568c934f54137b622
Sha1
1ae613b865966eb9731b3de813953d509aa17bc6
Base64
6I+s

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u83EC';
console.log(char);  // Output: 菬

Java:

char c = '\u83EC';
System.out.println(c);  // Output: 菬

JSON:

{"text": "\u83EC"}  // Value: 菬

Python:

char = '\u83EC'
print(char)  # Output: 菬

Perl:

my $char = "\x{83EC}";
print $char;  # Output: 菬

PHP:

$char = "\x{83EC}";
echo $char;  // Output: 菬

Ruby:

char = "\u{83EC}"
puts char  # Output: 菬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33772;</p>  <!-- Display: 菬 -->

HTML Hexadecimal:

<p>HTML hex: &#x83EC;</p>  <!-- Display: 菬 -->

URL Encoding:

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

Encodings

MD5:

dca6cc98858128f568c934f54137b622

SHA1:

1ae613b865966eb9731b3de813953d509aa17bc6

Base64:

6I+s