Unicode Finder

"凝" U+51DD(CJK UNIFIED IDEOGRAPH-51DD)

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

Programming

C
\u51DD
JavaScript
\u51DD
Java
\u51DD
Json
\u51DD
Python
\u51DD
Perl
\x{51DD}
PHP
\x{51DD}
Ruby
\u{51DD}
Rust
\u{51DD}
Go
\u51DD

Web

CSS
\0051DD
HtmlDecimal
凝
HtmlHexadecimal
凝
Url
%E5%87%9D

Code

MD5
591b42590323beb9f18d144afe05848d
Sha1
94ecfd1939041d85da45c03b664b3a6212d9db43
Base64
5Yed

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u51DD';
console.log(char);  // Output: 凝

Java:

char c = '\u51DD';
System.out.println(c);  // Output: 凝

JSON:

{"text": "\u51DD"}  // Value: 凝

Python:

char = '\u51DD'
print(char)  # Output: 凝

Perl:

my $char = "\x{51DD}";
print $char;  # Output: 凝

PHP:

$char = "\x{51DD}";
echo $char;  // Output: 凝

Ruby:

char = "\u{51DD}"
puts char  # Output: 凝

Rust:

let c = '\u{51DD}';
println!("{}", c);  // Output: 凝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0051DD";  /* Display: 凝 */
}

HTML Decimal:

<p>HTML decimal: &#20957;</p>  <!-- Display: 凝 -->

HTML Hexadecimal:

<p>HTML hex: &#x51DD;</p>  <!-- Display: 凝 -->

URL Encoding:

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

Encodings

MD5:

591b42590323beb9f18d144afe05848d

SHA1:

94ecfd1939041d85da45c03b664b3a6212d9db43

Base64:

5Yed