Unicode Finder

"愄" U+6104(CJK UNIFIED IDEOGRAPH-6104)

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

Programming

C
\u6104
JavaScript
\u6104
Java
\u6104
Json
\u6104
Python
\u6104
Perl
\x{6104}
PHP
\x{6104}
Ruby
\u{6104}
Rust
\u{6104}
Go
\u6104

Web

CSS
\006104
HtmlDecimal
愄
HtmlHexadecimal
愄
Url
%E6%84%84

Code

MD5
32943dd2c95ae04d6ae07c349ec068fe
Sha1
ea09baaeb08ec161d120265857112169e505ac92
Base64
5oSE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6104';
console.log(char);  // Output: 愄

Java:

char c = '\u6104';
System.out.println(c);  // Output: 愄

JSON:

{"text": "\u6104"}  // Value: 愄

Python:

char = '\u6104'
print(char)  # Output: 愄

Perl:

my $char = "\x{6104}";
print $char;  # Output: 愄

PHP:

$char = "\x{6104}";
echo $char;  // Output: 愄

Ruby:

char = "\u{6104}"
puts char  # Output: 愄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006104";  /* Display: 愄 */
}

HTML Decimal:

<p>HTML decimal: &#24836;</p>  <!-- Display: 愄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6104;</p>  <!-- Display: 愄 -->

URL Encoding:

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

Encodings

MD5:

32943dd2c95ae04d6ae07c349ec068fe

SHA1:

ea09baaeb08ec161d120265857112169e505ac92

Base64:

5oSE