Unicode Finder

"囱" U+56F1(CJK UNIFIED IDEOGRAPH-56F1)

U+56F1
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-56F1

Programming

C
\u56F1
JavaScript
\u56F1
Java
\u56F1
Json
\u56F1
Python
\u56F1
Perl
\x{56F1}
PHP
\x{56F1}
Ruby
\u{56F1}
Rust
\u{56F1}
Go
\u56F1

Web

CSS
\0056F1
HtmlDecimal
囱
HtmlHexadecimal
囱
Url
%E5%9B%B1

Code

MD5
b9f3fba541edcf53a318dfb0aea74138
Sha1
eb0ab49ddad50df2441177c77e08969e33e893df
Base64
5Zux

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u56F1';
console.log(char);  // Output: 囱

Java:

char c = '\u56F1';
System.out.println(c);  // Output: 囱

JSON:

{"text": "\u56F1"}  // Value: 囱

Python:

char = '\u56F1'
print(char)  # Output: 囱

Perl:

my $char = "\x{56F1}";
print $char;  # Output: 囱

PHP:

$char = "\x{56F1}";
echo $char;  // Output: 囱

Ruby:

char = "\u{56F1}"
puts char  # Output: 囱

Rust:

let c = '\u{56F1}';
println!("{}", c);  // Output: 囱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0056F1";  /* Display: 囱 */
}

HTML Decimal:

<p>HTML decimal: &#22257;</p>  <!-- Display: 囱 -->

HTML Hexadecimal:

<p>HTML hex: &#x56F1;</p>  <!-- Display: 囱 -->

URL Encoding:

// 囱 URL encoding
https://unicodefinder.com/search.php?query=%E5%9B%B1

Encodings

MD5:

b9f3fba541edcf53a318dfb0aea74138

SHA1:

eb0ab49ddad50df2441177c77e08969e33e893df

Base64:

5Zux