Unicode Finder

"川" U+5DDD(CJK UNIFIED IDEOGRAPH-5DDD)

U+5DDD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5DDD

Programming

C
\u5DDD
JavaScript
\u5DDD
Java
\u5DDD
Json
\u5DDD
Python
\u5DDD
Perl
\x{5DDD}
PHP
\x{5DDD}
Ruby
\u{5DDD}
Rust
\u{5DDD}
Go
\u5DDD

Web

CSS
\005DDD
HtmlDecimal
川
HtmlHexadecimal
川
Url
%E5%B7%9D

Code

MD5
e130dbe0a5c25c0236cb60833d150f47
Sha1
0f6a7e280c00c99aa772be1762ebf927680dfcab
Base64
5bed

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5DDD';
console.log(char);  // Output: 川

Java:

char c = '\u5DDD';
System.out.println(c);  // Output: 川

JSON:

{"text": "\u5DDD"}  // Value: 川

Python:

char = '\u5DDD'
print(char)  # Output: 川

Perl:

my $char = "\x{5DDD}";
print $char;  # Output: 川

PHP:

$char = "\x{5DDD}";
echo $char;  // Output: 川

Ruby:

char = "\u{5DDD}"
puts char  # Output: 川

Rust:

let c = '\u{5DDD}';
println!("{}", c);  // Output: 川

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005DDD";  /* Display: 川 */
}

HTML Decimal:

<p>HTML decimal: &#24029;</p>  <!-- Display: 川 -->

HTML Hexadecimal:

<p>HTML hex: &#x5DDD;</p>  <!-- Display: 川 -->

URL Encoding:

// 川 URL encoding
https://unicodefinder.com/search.php?query=%E5%B7%9D

Encodings

MD5:

e130dbe0a5c25c0236cb60833d150f47

SHA1:

0f6a7e280c00c99aa772be1762ebf927680dfcab

Base64:

5bed