Unicode Finder

"析" U+6790(CJK UNIFIED IDEOGRAPH-6790)

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

Programming

C
\u6790
JavaScript
\u6790
Java
\u6790
Json
\u6790
Python
\u6790
Perl
\x{6790}
PHP
\x{6790}
Ruby
\u{6790}
Rust
\u{6790}
Go
\u6790

Web

CSS
\006790
HtmlDecimal
析
HtmlHexadecimal
析
Url
%E6%9E%90

Code

MD5
5aba4dfaaa3b81a7b118c4b54347a313
Sha1
f3275459e04285ebae73641ddb656d9ff107fe75
Base64
5p6Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6790';
console.log(char);  // Output: 析

Java:

char c = '\u6790';
System.out.println(c);  // Output: 析

JSON:

{"text": "\u6790"}  // Value: 析

Python:

char = '\u6790'
print(char)  # Output: 析

Perl:

my $char = "\x{6790}";
print $char;  # Output: 析

PHP:

$char = "\x{6790}";
echo $char;  // Output: 析

Ruby:

char = "\u{6790}"
puts char  # Output: 析

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006790";  /* Display: 析 */
}

HTML Decimal:

<p>HTML decimal: &#26512;</p>  <!-- Display: 析 -->

HTML Hexadecimal:

<p>HTML hex: &#x6790;</p>  <!-- Display: 析 -->

URL Encoding:

// 析 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%90

Encodings

MD5:

5aba4dfaaa3b81a7b118c4b54347a313

SHA1:

f3275459e04285ebae73641ddb656d9ff107fe75

Base64:

5p6Q