Unicode Finder

"映" U+6620(CJK UNIFIED IDEOGRAPH-6620)

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

Programming

C
\u6620
JavaScript
\u6620
Java
\u6620
Json
\u6620
Python
\u6620
Perl
\x{6620}
PHP
\x{6620}
Ruby
\u{6620}
Rust
\u{6620}
Go
\u6620

Web

CSS
\006620
HtmlDecimal
映
HtmlHexadecimal
映
Url
%E6%98%A0

Code

MD5
29aa3857dd9d2b30aa8e92a510d5dc69
Sha1
cff2b01d7efc5f49416841a1e2298199e5e3d9f1
Base64
5pig

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6620';
console.log(char);  // Output: 映

Java:

char c = '\u6620';
System.out.println(c);  // Output: 映

JSON:

{"text": "\u6620"}  // Value: 映

Python:

char = '\u6620'
print(char)  # Output: 映

Perl:

my $char = "\x{6620}";
print $char;  # Output: 映

PHP:

$char = "\x{6620}";
echo $char;  // Output: 映

Ruby:

char = "\u{6620}"
puts char  # Output: 映

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006620";  /* Display: 映 */
}

HTML Decimal:

<p>HTML decimal: &#26144;</p>  <!-- Display: 映 -->

HTML Hexadecimal:

<p>HTML hex: &#x6620;</p>  <!-- Display: 映 -->

URL Encoding:

// 映 URL encoding
https://unicodefinder.com/search.php?query=%E6%98%A0

Encodings

MD5:

29aa3857dd9d2b30aa8e92a510d5dc69

SHA1:

cff2b01d7efc5f49416841a1e2298199e5e3d9f1

Base64:

5pig