Unicode Finder

"售" U+552E(CJK UNIFIED IDEOGRAPH-552E)

U+552E
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-552E

Programming

C
\u552E
JavaScript
\u552E
Java
\u552E
Json
\u552E
Python
\u552E
Perl
\x{552E}
PHP
\x{552E}
Ruby
\u{552E}
Rust
\u{552E}
Go
\u552E

Web

CSS
\00552E
HtmlDecimal
售
HtmlHexadecimal
售
Url
%E5%94%AE

Code

MD5
6e18d9630397ee12ee64de72213c7ae0
Sha1
2f901a94b1e2d5ee47a64a456574ca9f1c62b749
Base64
5ZSu

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u552E';
console.log(char);  // Output: 售

Java:

char c = '\u552E';
System.out.println(c);  // Output: 售

JSON:

{"text": "\u552E"}  // Value: 售

Python:

char = '\u552E'
print(char)  # Output: 售

Perl:

my $char = "\x{552E}";
print $char;  # Output: 售

PHP:

$char = "\x{552E}";
echo $char;  // Output: 售

Ruby:

char = "\u{552E}"
puts char  # Output: 售

Rust:

let c = '\u{552E}';
println!("{}", c);  // Output: 售

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00552E";  /* Display: 售 */
}

HTML Decimal:

<p>HTML decimal: &#21806;</p>  <!-- Display: 售 -->

HTML Hexadecimal:

<p>HTML hex: &#x552E;</p>  <!-- Display: 售 -->

URL Encoding:

// 售 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%AE

Encodings

MD5:

6e18d9630397ee12ee64de72213c7ae0

SHA1:

2f901a94b1e2d5ee47a64a456574ca9f1c62b749

Base64:

5ZSu