Unicode Finder

"忟" U+5FDF(CJK UNIFIED IDEOGRAPH-5FDF)

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

Programming

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

Web

CSS
\005FDF
HtmlDecimal
忟
HtmlHexadecimal
忟
Url
%E5%BF%9F

Code

MD5
ca4ae6a2356f813f4f173a36bebdb0ab
Sha1
a815481f4617e6a24208133f41f446ce61b1bbac
Base64
5b+f

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5FDF';
console.log(char);  // Output: 忟

Java:

char c = '\u5FDF';
System.out.println(c);  // Output: 忟

JSON:

{"text": "\u5FDF"}  // Value: 忟

Python:

char = '\u5FDF'
print(char)  # Output: 忟

Perl:

my $char = "\x{5FDF}";
print $char;  # Output: 忟

PHP:

$char = "\x{5FDF}";
echo $char;  // Output: 忟

Ruby:

char = "\u{5FDF}"
puts char  # Output: 忟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24543;</p>  <!-- Display: 忟 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FDF;</p>  <!-- Display: 忟 -->

URL Encoding:

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

Encodings

MD5:

ca4ae6a2356f813f4f173a36bebdb0ab

SHA1:

a815481f4617e6a24208133f41f446ce61b1bbac

Base64:

5b+f