Unicode Finder

"愅" U+6105(CJK UNIFIED IDEOGRAPH-6105)

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

Programming

C
\u6105
JavaScript
\u6105
Java
\u6105
Json
\u6105
Python
\u6105
Perl
\x{6105}
PHP
\x{6105}
Ruby
\u{6105}
Rust
\u{6105}
Go
\u6105

Web

CSS
\006105
HtmlDecimal
愅
HtmlHexadecimal
愅
Url
%E6%84%85

Code

MD5
631913861d06be298cd2054f68f4409c
Sha1
d8d01e905bd82f4e6fc8e58f52ae3be0928e7a36
Base64
5oSF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6105';
console.log(char);  // Output: 愅

Java:

char c = '\u6105';
System.out.println(c);  // Output: 愅

JSON:

{"text": "\u6105"}  // Value: 愅

Python:

char = '\u6105'
print(char)  # Output: 愅

Perl:

my $char = "\x{6105}";
print $char;  # Output: 愅

PHP:

$char = "\x{6105}";
echo $char;  // Output: 愅

Ruby:

char = "\u{6105}"
puts char  # Output: 愅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006105";  /* Display: 愅 */
}

HTML Decimal:

<p>HTML decimal: &#24837;</p>  <!-- Display: 愅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6105;</p>  <!-- Display: 愅 -->

URL Encoding:

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

Encodings

MD5:

631913861d06be298cd2054f68f4409c

SHA1:

d8d01e905bd82f4e6fc8e58f52ae3be0928e7a36

Base64:

5oSF