Unicode Finder

"悐" U+6090(CJK UNIFIED IDEOGRAPH-6090)

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

Programming

C
\u6090
JavaScript
\u6090
Java
\u6090
Json
\u6090
Python
\u6090
Perl
\x{6090}
PHP
\x{6090}
Ruby
\u{6090}
Rust
\u{6090}
Go
\u6090

Web

CSS
\006090
HtmlDecimal
悐
HtmlHexadecimal
悐
Url
%E6%82%90

Code

MD5
e69e8bb376645c1bf52f74476323e841
Sha1
8f39acf6fdbcd3818810d46863fcdaa8f8501501
Base64
5oKQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6090';
console.log(char);  // Output: 悐

Java:

char c = '\u6090';
System.out.println(c);  // Output: 悐

JSON:

{"text": "\u6090"}  // Value: 悐

Python:

char = '\u6090'
print(char)  # Output: 悐

Perl:

my $char = "\x{6090}";
print $char;  # Output: 悐

PHP:

$char = "\x{6090}";
echo $char;  // Output: 悐

Ruby:

char = "\u{6090}"
puts char  # Output: 悐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006090";  /* Display: 悐 */
}

HTML Decimal:

<p>HTML decimal: &#24720;</p>  <!-- Display: 悐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6090;</p>  <!-- Display: 悐 -->

URL Encoding:

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

Encodings

MD5:

e69e8bb376645c1bf52f74476323e841

SHA1:

8f39acf6fdbcd3818810d46863fcdaa8f8501501

Base64:

5oKQ