Unicode Finder

"忎" U+5FCE(CJK UNIFIED IDEOGRAPH-5FCE)

U+5FCE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5FCE

Programming

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

Web

CSS
\005FCE
HtmlDecimal
忎
HtmlHexadecimal
忎
Url
%E5%BF%8E

Code

MD5
287a0ce1ec9345b2fe71fd3d46326bf6
Sha1
bb4530ad371a8d642e75c346eac38fed94a810af
Base64
5b+O

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5FCE';
console.log(char);  // Output: 忎

Java:

char c = '\u5FCE';
System.out.println(c);  // Output: 忎

JSON:

{"text": "\u5FCE"}  // Value: 忎

Python:

char = '\u5FCE'
print(char)  # Output: 忎

Perl:

my $char = "\x{5FCE}";
print $char;  # Output: 忎

PHP:

$char = "\x{5FCE}";
echo $char;  // Output: 忎

Ruby:

char = "\u{5FCE}"
puts char  # Output: 忎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24526;</p>  <!-- Display: 忎 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FCE;</p>  <!-- Display: 忎 -->

URL Encoding:

// 忎 URL encoding
https://unicodefinder.com/search.php?query=%E5%BF%8E

Encodings

MD5:

287a0ce1ec9345b2fe71fd3d46326bf6

SHA1:

bb4530ad371a8d642e75c346eac38fed94a810af

Base64:

5b+O