Unicode Finder

"蒏" U+848F(CJK UNIFIED IDEOGRAPH-848F)

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

Programming

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

Web

CSS
\00848F
HtmlDecimal
蒏
HtmlHexadecimal
蒏
Url
%E8%92%8F

Code

MD5
6f417b8a312aacce365c042812c0ab76
Sha1
de74a900ccf4d5bd53166697adca404e22bf3cf6
Base64
6JKP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u848F';
console.log(char);  // Output: 蒏

Java:

char c = '\u848F';
System.out.println(c);  // Output: 蒏

JSON:

{"text": "\u848F"}  // Value: 蒏

Python:

char = '\u848F'
print(char)  # Output: 蒏

Perl:

my $char = "\x{848F}";
print $char;  # Output: 蒏

PHP:

$char = "\x{848F}";
echo $char;  // Output: 蒏

Ruby:

char = "\u{848F}"
puts char  # Output: 蒏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33935;</p>  <!-- Display: 蒏 -->

HTML Hexadecimal:

<p>HTML hex: &#x848F;</p>  <!-- Display: 蒏 -->

URL Encoding:

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

Encodings

MD5:

6f417b8a312aacce365c042812c0ab76

SHA1:

de74a900ccf4d5bd53166697adca404e22bf3cf6

Base64:

6JKP