Unicode Finder

"蒎" U+848E(CJK UNIFIED IDEOGRAPH-848E)

U+848E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-848E

Programming

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

Web

CSS
\00848E
HtmlDecimal
蒎
HtmlHexadecimal
蒎
Url
%E8%92%8E

Code

MD5
97b0beccdcd32f83542df18b4221a600
Sha1
2ce77456fc3d6c694c3ea60d0f2c30bab6fc326f
Base64
6JKO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u848E';
console.log(char);  // Output: 蒎

Java:

char c = '\u848E';
System.out.println(c);  // Output: 蒎

JSON:

{"text": "\u848E"}  // Value: 蒎

Python:

char = '\u848E'
print(char)  # Output: 蒎

Perl:

my $char = "\x{848E}";
print $char;  # Output: 蒎

PHP:

$char = "\x{848E}";
echo $char;  // Output: 蒎

Ruby:

char = "\u{848E}"
puts char  # Output: 蒎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33934;</p>  <!-- Display: 蒎 -->

HTML Hexadecimal:

<p>HTML hex: &#x848E;</p>  <!-- Display: 蒎 -->

URL Encoding:

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

Encodings

MD5:

97b0beccdcd32f83542df18b4221a600

SHA1:

2ce77456fc3d6c694c3ea60d0f2c30bab6fc326f

Base64:

6JKO