Unicode Finder

"唜" U+551C(CJK UNIFIED IDEOGRAPH-551C)

U+551C
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-551C

Programming

C
\u551C
JavaScript
\u551C
Java
\u551C
Json
\u551C
Python
\u551C
Perl
\x{551C}
PHP
\x{551C}
Ruby
\u{551C}
Rust
\u{551C}
Go
\u551C

Web

CSS
\00551C
HtmlDecimal
唜
HtmlHexadecimal
唜
Url
%E5%94%9C

Code

MD5
ec8c7227edc7ab64e5f1bd4ea20b38e9
Sha1
64e3784cf9a0f97acdc0e5f003aff9ca55a2047a
Base64
5ZSc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u551C';
console.log(char);  // Output: 唜

Java:

char c = '\u551C';
System.out.println(c);  // Output: 唜

JSON:

{"text": "\u551C"}  // Value: 唜

Python:

char = '\u551C'
print(char)  # Output: 唜

Perl:

my $char = "\x{551C}";
print $char;  # Output: 唜

PHP:

$char = "\x{551C}";
echo $char;  // Output: 唜

Ruby:

char = "\u{551C}"
puts char  # Output: 唜

Rust:

let c = '\u{551C}';
println!("{}", c);  // Output: 唜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00551C";  /* Display: 唜 */
}

HTML Decimal:

<p>HTML decimal: &#21788;</p>  <!-- Display: 唜 -->

HTML Hexadecimal:

<p>HTML hex: &#x551C;</p>  <!-- Display: 唜 -->

URL Encoding:

// 唜 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%9C

Encodings

MD5:

ec8c7227edc7ab64e5f1bd4ea20b38e9

SHA1:

64e3784cf9a0f97acdc0e5f003aff9ca55a2047a

Base64:

5ZSc