Unicode Finder

"蘦" U+8626(CJK UNIFIED IDEOGRAPH-8626)

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

Programming

C
\u8626
JavaScript
\u8626
Java
\u8626
Json
\u8626
Python
\u8626
Perl
\x{8626}
PHP
\x{8626}
Ruby
\u{8626}
Rust
\u{8626}
Go
\u8626

Web

CSS
\008626
HtmlDecimal
蘦
HtmlHexadecimal
蘦
Url
%E8%98%A6

Code

MD5
de9978ac3bb8df0e971d08d1d0ea726a
Sha1
a41d7a09122411ca2f1dd666b09d954e32084170
Base64
6Jim

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8626';
console.log(char);  // Output: 蘦

Java:

char c = '\u8626';
System.out.println(c);  // Output: 蘦

JSON:

{"text": "\u8626"}  // Value: 蘦

Python:

char = '\u8626'
print(char)  # Output: 蘦

Perl:

my $char = "\x{8626}";
print $char;  # Output: 蘦

PHP:

$char = "\x{8626}";
echo $char;  // Output: 蘦

Ruby:

char = "\u{8626}"
puts char  # Output: 蘦

Rust:

let c = '\u{8626}';
println!("{}", c);  // Output: 蘦

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008626";  /* Display: 蘦 */
}

HTML Decimal:

<p>HTML decimal: &#34342;</p>  <!-- Display: 蘦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8626;</p>  <!-- Display: 蘦 -->

URL Encoding:

// 蘦 URL encoding
https://unicodefinder.com/search.php?query=%E8%98%A6

Encodings

MD5:

de9978ac3bb8df0e971d08d1d0ea726a

SHA1:

a41d7a09122411ca2f1dd666b09d954e32084170

Base64:

6Jim