Unicode Finder

"葏" U+844F(CJK UNIFIED IDEOGRAPH-844F)

U+844F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-844F

Programming

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

Web

CSS
\00844F
HtmlDecimal
葏
HtmlHexadecimal
葏
Url
%E8%91%8F

Code

MD5
13e5732b34bcb571847e221da818bd68
Sha1
45f884109a2ee624d7101088991830f9019f2a2c
Base64
6JGP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u844F';
console.log(char);  // Output: 葏

Java:

char c = '\u844F';
System.out.println(c);  // Output: 葏

JSON:

{"text": "\u844F"}  // Value: 葏

Python:

char = '\u844F'
print(char)  # Output: 葏

Perl:

my $char = "\x{844F}";
print $char;  # Output: 葏

PHP:

$char = "\x{844F}";
echo $char;  // Output: 葏

Ruby:

char = "\u{844F}"
puts char  # Output: 葏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33871;</p>  <!-- Display: 葏 -->

HTML Hexadecimal:

<p>HTML hex: &#x844F;</p>  <!-- Display: 葏 -->

URL Encoding:

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

Encodings

MD5:

13e5732b34bcb571847e221da818bd68

SHA1:

45f884109a2ee624d7101088991830f9019f2a2c

Base64:

6JGP