Unicode Finder

"捐" U+6350(CJK UNIFIED IDEOGRAPH-6350)

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

Programming

C
\u6350
JavaScript
\u6350
Java
\u6350
Json
\u6350
Python
\u6350
Perl
\x{6350}
PHP
\x{6350}
Ruby
\u{6350}
Rust
\u{6350}
Go
\u6350

Web

CSS
\006350
HtmlDecimal
捐
HtmlHexadecimal
捐
Url
%E6%8D%90

Code

MD5
55db8cd4a9c26300f100c1c44936e396
Sha1
88bbe142a107785a9e94a625bab1bd6a94f59069
Base64
5o2Q

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6350';
console.log(char);  // Output: 捐

Java:

char c = '\u6350';
System.out.println(c);  // Output: 捐

JSON:

{"text": "\u6350"}  // Value: 捐

Python:

char = '\u6350'
print(char)  # Output: 捐

Perl:

my $char = "\x{6350}";
print $char;  # Output: 捐

PHP:

$char = "\x{6350}";
echo $char;  // Output: 捐

Ruby:

char = "\u{6350}"
puts char  # Output: 捐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006350";  /* Display: 捐 */
}

HTML Decimal:

<p>HTML decimal: &#25424;</p>  <!-- Display: 捐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6350;</p>  <!-- Display: 捐 -->

URL Encoding:

// 捐 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%90

Encodings

MD5:

55db8cd4a9c26300f100c1c44936e396

SHA1:

88bbe142a107785a9e94a625bab1bd6a94f59069

Base64:

5o2Q