Unicode Finder

"蒐" U+8490(CJK UNIFIED IDEOGRAPH-8490)

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

Programming

C
\u8490
JavaScript
\u8490
Java
\u8490
Json
\u8490
Python
\u8490
Perl
\x{8490}
PHP
\x{8490}
Ruby
\u{8490}
Rust
\u{8490}
Go
\u8490

Web

CSS
\008490
HtmlDecimal
蒐
HtmlHexadecimal
蒐
Url
%E8%92%90

Code

MD5
e187fd6af10d99452dc3edd2cde908cd
Sha1
522b5920f6b67f5328d5f672692384c530ee7b84
Base64
6JKQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8490';
console.log(char);  // Output: 蒐

Java:

char c = '\u8490';
System.out.println(c);  // Output: 蒐

JSON:

{"text": "\u8490"}  // Value: 蒐

Python:

char = '\u8490'
print(char)  # Output: 蒐

Perl:

my $char = "\x{8490}";
print $char;  # Output: 蒐

PHP:

$char = "\x{8490}";
echo $char;  // Output: 蒐

Ruby:

char = "\u{8490}"
puts char  # Output: 蒐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008490";  /* Display: 蒐 */
}

HTML Decimal:

<p>HTML decimal: &#33936;</p>  <!-- Display: 蒐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8490;</p>  <!-- Display: 蒐 -->

URL Encoding:

// 蒐 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%90

Encodings

MD5:

e187fd6af10d99452dc3edd2cde908cd

SHA1:

522b5920f6b67f5328d5f672692384c530ee7b84

Base64:

6JKQ