Unicode Finder

"莏" U+838F(CJK UNIFIED IDEOGRAPH-838F)

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

Programming

C
\u838F
JavaScript
\u838F
Java
\u838F
Json
\u838F
Python
\u838F
Perl
\x{838F}
PHP
\x{838F}
Ruby
\u{838F}
Rust
\u{838F}
Go
\u838F

Web

CSS
\00838F
HtmlDecimal
莏
HtmlHexadecimal
莏
Url
%E8%8E%8F

Code

MD5
9070aa24cdf8da8f652c3c7ab9c7d58a
Sha1
556a253468458500d4e5fd3586bdbf0721f2108b
Base64
6I6P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u838F';
console.log(char);  // Output: 莏

Java:

char c = '\u838F';
System.out.println(c);  // Output: 莏

JSON:

{"text": "\u838F"}  // Value: 莏

Python:

char = '\u838F'
print(char)  # Output: 莏

Perl:

my $char = "\x{838F}";
print $char;  # Output: 莏

PHP:

$char = "\x{838F}";
echo $char;  // Output: 莏

Ruby:

char = "\u{838F}"
puts char  # Output: 莏

Rust:

let c = '\u{838F}';
println!("{}", c);  // Output: 莏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00838F";  /* Display: 莏 */
}

HTML Decimal:

<p>HTML decimal: &#33679;</p>  <!-- Display: 莏 -->

HTML Hexadecimal:

<p>HTML hex: &#x838F;</p>  <!-- Display: 莏 -->

URL Encoding:

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

Encodings

MD5:

9070aa24cdf8da8f652c3c7ab9c7d58a

SHA1:

556a253468458500d4e5fd3586bdbf0721f2108b

Base64:

6I6P