Unicode Finder

"忑" U+5FD1(CJK UNIFIED IDEOGRAPH-5FD1)

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

Programming

C
\u5FD1
JavaScript
\u5FD1
Java
\u5FD1
Json
\u5FD1
Python
\u5FD1
Perl
\x{5FD1}
PHP
\x{5FD1}
Ruby
\u{5FD1}
Rust
\u{5FD1}
Go
\u5FD1

Web

CSS
\005FD1
HtmlDecimal
忑
HtmlHexadecimal
忑
Url
%E5%BF%91

Code

MD5
1c86661c5b7ecca5b8409d9f540cd8a8
Sha1
c03765f6cca3d415b26cbeb6a21dac7281502e70
Base64
5b+R

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5FD1';
console.log(char);  // Output: 忑

Java:

char c = '\u5FD1';
System.out.println(c);  // Output: 忑

JSON:

{"text": "\u5FD1"}  // Value: 忑

Python:

char = '\u5FD1'
print(char)  # Output: 忑

Perl:

my $char = "\x{5FD1}";
print $char;  # Output: 忑

PHP:

$char = "\x{5FD1}";
echo $char;  // Output: 忑

Ruby:

char = "\u{5FD1}"
puts char  # Output: 忑

Rust:

let c = '\u{5FD1}';
println!("{}", c);  // Output: 忑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005FD1";  /* Display: 忑 */
}

HTML Decimal:

<p>HTML decimal: &#24529;</p>  <!-- Display: 忑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FD1;</p>  <!-- Display: 忑 -->

URL Encoding:

// 忑 URL encoding
https://unicodefinder.com/search.php?query=%E5%BF%91

Encodings

MD5:

1c86661c5b7ecca5b8409d9f540cd8a8

SHA1:

c03765f6cca3d415b26cbeb6a21dac7281502e70

Base64:

5b+R