Unicode Finder

"凜" U+51DC(CJK UNIFIED IDEOGRAPH-51DC)

U+51DC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-51DC

Programming

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

Web

CSS
\0051DC
HtmlDecimal
凜
HtmlHexadecimal
凜
Url
%E5%87%9C

Code

MD5
48aea41e3f23a2a6544aec6245e95048
Sha1
ba5062e30527e46e5c7c06637a2092d24cd38059
Base64
5Yec

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u51DC';
console.log(char);  // Output: 凜

Java:

char c = '\u51DC';
System.out.println(c);  // Output: 凜

JSON:

{"text": "\u51DC"}  // Value: 凜

Python:

char = '\u51DC'
print(char)  # Output: 凜

Perl:

my $char = "\x{51DC}";
print $char;  # Output: 凜

PHP:

$char = "\x{51DC}";
echo $char;  // Output: 凜

Ruby:

char = "\u{51DC}"
puts char  # Output: 凜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20956;</p>  <!-- Display: 凜 -->

HTML Hexadecimal:

<p>HTML hex: &#x51DC;</p>  <!-- Display: 凜 -->

URL Encoding:

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

Encodings

MD5:

48aea41e3f23a2a6544aec6245e95048

SHA1:

ba5062e30527e46e5c7c06637a2092d24cd38059

Base64:

5Yec