Unicode Finder

"愂" U+6102(CJK UNIFIED IDEOGRAPH-6102)

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

Programming

C
\u6102
JavaScript
\u6102
Java
\u6102
Json
\u6102
Python
\u6102
Perl
\x{6102}
PHP
\x{6102}
Ruby
\u{6102}
Rust
\u{6102}
Go
\u6102

Web

CSS
\006102
HtmlDecimal
愂
HtmlHexadecimal
愂
Url
%E6%84%82

Code

MD5
883a35c99dfd0f3e38e949b3cfbbba34
Sha1
819b63923e3ab804b446d4ee416da2a11f984854
Base64
5oSC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6102';
console.log(char);  // Output: 愂

Java:

char c = '\u6102';
System.out.println(c);  // Output: 愂

JSON:

{"text": "\u6102"}  // Value: 愂

Python:

char = '\u6102'
print(char)  # Output: 愂

Perl:

my $char = "\x{6102}";
print $char;  # Output: 愂

PHP:

$char = "\x{6102}";
echo $char;  // Output: 愂

Ruby:

char = "\u{6102}"
puts char  # Output: 愂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006102";  /* Display: 愂 */
}

HTML Decimal:

<p>HTML decimal: &#24834;</p>  <!-- Display: 愂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6102;</p>  <!-- Display: 愂 -->

URL Encoding:

// 愂 URL encoding
https://unicodefinder.com/search.php?query=%E6%84%82

Encodings

MD5:

883a35c99dfd0f3e38e949b3cfbbba34

SHA1:

819b63923e3ab804b446d4ee416da2a11f984854

Base64:

5oSC