Unicode Finder

"廋" U+5ECB(CJK UNIFIED IDEOGRAPH-5ECB)

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

Programming

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

Web

CSS
\005ECB
HtmlDecimal
廋
HtmlHexadecimal
廋
Url
%E5%BB%8B

Code

MD5
c731893297a7f7233435918267e6a23a
Sha1
3b5b2a1d5246fd0fd7737f14e6bfb55baa1fbd59
Base64
5buL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5ECB';
console.log(char);  // Output: 廋

Java:

char c = '\u5ECB';
System.out.println(c);  // Output: 廋

JSON:

{"text": "\u5ECB"}  // Value: 廋

Python:

char = '\u5ECB'
print(char)  # Output: 廋

Perl:

my $char = "\x{5ECB}";
print $char;  # Output: 廋

PHP:

$char = "\x{5ECB}";
echo $char;  // Output: 廋

Ruby:

char = "\u{5ECB}"
puts char  # Output: 廋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24267;</p>  <!-- Display: 廋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ECB;</p>  <!-- Display: 廋 -->

URL Encoding:

// 廋 URL encoding
https://unicodefinder.com/search.php?query=%E5%BB%8B

Encodings

MD5:

c731893297a7f7233435918267e6a23a

SHA1:

3b5b2a1d5246fd0fd7737f14e6bfb55baa1fbd59

Base64:

5buL