Unicode Finder

"愡" U+6121(CJK UNIFIED IDEOGRAPH-6121)

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

Programming

C
\u6121
JavaScript
\u6121
Java
\u6121
Json
\u6121
Python
\u6121
Perl
\x{6121}
PHP
\x{6121}
Ruby
\u{6121}
Rust
\u{6121}
Go
\u6121

Web

CSS
\006121
HtmlDecimal
愡
HtmlHexadecimal
愡
Url
%E6%84%A1

Code

MD5
a0bb59d47a3976f780423cfc81ee3881
Sha1
bb422540adfe8bcc64a20e8c62a671c57e73d489
Base64
5oSh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6121';
console.log(char);  // Output: 愡

Java:

char c = '\u6121';
System.out.println(c);  // Output: 愡

JSON:

{"text": "\u6121"}  // Value: 愡

Python:

char = '\u6121'
print(char)  # Output: 愡

Perl:

my $char = "\x{6121}";
print $char;  # Output: 愡

PHP:

$char = "\x{6121}";
echo $char;  // Output: 愡

Ruby:

char = "\u{6121}"
puts char  # Output: 愡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006121";  /* Display: 愡 */
}

HTML Decimal:

<p>HTML decimal: &#24865;</p>  <!-- Display: 愡 -->

HTML Hexadecimal:

<p>HTML hex: &#x6121;</p>  <!-- Display: 愡 -->

URL Encoding:

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

Encodings

MD5:

a0bb59d47a3976f780423cfc81ee3881

SHA1:

bb422540adfe8bcc64a20e8c62a671c57e73d489

Base64:

5oSh