Unicode Finder

"忿" U+5FFF(CJK UNIFIED IDEOGRAPH-5FFF)

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

Programming

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

Web

CSS
\005FFF
HtmlDecimal
忿
HtmlHexadecimal
忿
Url
%E5%BF%BF

Code

MD5
67f89365580590becb1ee8fc648fc696
Sha1
a2c6d9e08cccfc8b667915a78454e94c464066d1
Base64
5b+/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5FFF';
console.log(char);  // Output: 忿

Java:

char c = '\u5FFF';
System.out.println(c);  // Output: 忿

JSON:

{"text": "\u5FFF"}  // Value: 忿

Python:

char = '\u5FFF'
print(char)  # Output: 忿

Perl:

my $char = "\x{5FFF}";
print $char;  # Output: 忿

PHP:

$char = "\x{5FFF}";
echo $char;  // Output: 忿

Ruby:

char = "\u{5FFF}"
puts char  # Output: 忿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24575;</p>  <!-- Display: 忿 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FFF;</p>  <!-- Display: 忿 -->

URL Encoding:

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

Encodings

MD5:

67f89365580590becb1ee8fc648fc696

SHA1:

a2c6d9e08cccfc8b667915a78454e94c464066d1

Base64:

5b+/