Unicode Finder

"挝" U+631D(CJK UNIFIED IDEOGRAPH-631D)

U+631D
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-631D

Programming

C
\u631D
JavaScript
\u631D
Java
\u631D
Json
\u631D
Python
\u631D
Perl
\x{631D}
PHP
\x{631D}
Ruby
\u{631D}
Rust
\u{631D}
Go
\u631D

Web

CSS
\00631D
HtmlDecimal
挝
HtmlHexadecimal
挝
Url
%E6%8C%9D

Code

MD5
d6bc66270283d3a73d963663f34fb9c7
Sha1
38740bd267eea1df6810b3ccced752f6a104b42e
Base64
5oyd

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u631D';
console.log(char);  // Output: 挝

Java:

char c = '\u631D';
System.out.println(c);  // Output: 挝

JSON:

{"text": "\u631D"}  // Value: 挝

Python:

char = '\u631D'
print(char)  # Output: 挝

Perl:

my $char = "\x{631D}";
print $char;  # Output: 挝

PHP:

$char = "\x{631D}";
echo $char;  // Output: 挝

Ruby:

char = "\u{631D}"
puts char  # Output: 挝

Rust:

let c = '\u{631D}';
println!("{}", c);  // Output: 挝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00631D";  /* Display: 挝 */
}

HTML Decimal:

<p>HTML decimal: &#25373;</p>  <!-- Display: 挝 -->

HTML Hexadecimal:

<p>HTML hex: &#x631D;</p>  <!-- Display: 挝 -->

URL Encoding:

// 挝 URL encoding
https://unicodefinder.com/search.php?query=%E6%8C%9D

Encodings

MD5:

d6bc66270283d3a73d963663f34fb9c7

SHA1:

38740bd267eea1df6810b3ccced752f6a104b42e

Base64:

5oyd