Unicode Finder

"團" U+5718(CJK UNIFIED IDEOGRAPH-5718)

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

Programming

C
\u5718
JavaScript
\u5718
Java
\u5718
Json
\u5718
Python
\u5718
Perl
\x{5718}
PHP
\x{5718}
Ruby
\u{5718}
Rust
\u{5718}
Go
\u5718

Web

CSS
\005718
HtmlDecimal
團
HtmlHexadecimal
團
Url
%E5%9C%98

Code

MD5
bf203ce85ad315841e2d717309be1246
Sha1
80ef180d08b8d5d6d97b93a06484e1312f810e0f
Base64
5ZyY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5718';
console.log(char);  // Output: 團

Java:

char c = '\u5718';
System.out.println(c);  // Output: 團

JSON:

{"text": "\u5718"}  // Value: 團

Python:

char = '\u5718'
print(char)  # Output: 團

Perl:

my $char = "\x{5718}";
print $char;  # Output: 團

PHP:

$char = "\x{5718}";
echo $char;  // Output: 團

Ruby:

char = "\u{5718}"
puts char  # Output: 團

Rust:

let c = '\u{5718}';
println!("{}", c);  // Output: 團

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005718";  /* Display: 團 */
}

HTML Decimal:

<p>HTML decimal: &#22296;</p>  <!-- Display: 團 -->

HTML Hexadecimal:

<p>HTML hex: &#x5718;</p>  <!-- Display: 團 -->

URL Encoding:

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

Encodings

MD5:

bf203ce85ad315841e2d717309be1246

SHA1:

80ef180d08b8d5d6d97b93a06484e1312f810e0f

Base64:

5ZyY