Unicode Finder

"蔏" U+850F(CJK UNIFIED IDEOGRAPH-850F)

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

Programming

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

Web

CSS
\00850F
HtmlDecimal
蔏
HtmlHexadecimal
蔏
Url
%E8%94%8F

Code

MD5
b8ba59ea84bad879401bcc699534ba9f
Sha1
33119212bb1b4175425b5f56efdb788198a79394
Base64
6JSP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u850F';
console.log(char);  // Output: 蔏

Java:

char c = '\u850F';
System.out.println(c);  // Output: 蔏

JSON:

{"text": "\u850F"}  // Value: 蔏

Python:

char = '\u850F'
print(char)  # Output: 蔏

Perl:

my $char = "\x{850F}";
print $char;  # Output: 蔏

PHP:

$char = "\x{850F}";
echo $char;  // Output: 蔏

Ruby:

char = "\u{850F}"
puts char  # Output: 蔏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#34063;</p>  <!-- Display: 蔏 -->

HTML Hexadecimal:

<p>HTML hex: &#x850F;</p>  <!-- Display: 蔏 -->

URL Encoding:

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

Encodings

MD5:

b8ba59ea84bad879401bcc699534ba9f

SHA1:

33119212bb1b4175425b5f56efdb788198a79394

Base64:

6JSP