Unicode Finder

"忼" U+5FFC(CJK UNIFIED IDEOGRAPH-5FFC)

U+5FFC
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5FFC

Programming

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

Web

CSS
\005FFC
HtmlDecimal
忼
HtmlHexadecimal
忼
Url
%E5%BF%BC

Code

MD5
d599410046c1e6ec235b5622d33560d9
Sha1
c01505ffffc21a1b5698214b082bc8f8de2faa01
Base64
5b+8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5FFC';
console.log(char);  // Output: 忼

Java:

char c = '\u5FFC';
System.out.println(c);  // Output: 忼

JSON:

{"text": "\u5FFC"}  // Value: 忼

Python:

char = '\u5FFC'
print(char)  # Output: 忼

Perl:

my $char = "\x{5FFC}";
print $char;  # Output: 忼

PHP:

$char = "\x{5FFC}";
echo $char;  // Output: 忼

Ruby:

char = "\u{5FFC}"
puts char  # Output: 忼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24572;</p>  <!-- Display: 忼 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FFC;</p>  <!-- Display: 忼 -->

URL Encoding:

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

Encodings

MD5:

d599410046c1e6ec235b5622d33560d9

SHA1:

c01505ffffc21a1b5698214b082bc8f8de2faa01

Base64:

5b+8