Unicode Finder

"挞" U+631E(CJK UNIFIED IDEOGRAPH-631E)

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

Programming

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

Web

CSS
\00631E
HtmlDecimal
挞
HtmlHexadecimal
挞
Url
%E6%8C%9E

Code

MD5
07ff0e6da7ee80570e78bfa67929d6aa
Sha1
80d02464ade525fb362f86282555e0b324331ccc
Base64
5oye

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u631E';
console.log(char);  // Output: 挞

Java:

char c = '\u631E';
System.out.println(c);  // Output: 挞

JSON:

{"text": "\u631E"}  // Value: 挞

Python:

char = '\u631E'
print(char)  # Output: 挞

Perl:

my $char = "\x{631E}";
print $char;  # Output: 挞

PHP:

$char = "\x{631E}";
echo $char;  // Output: 挞

Ruby:

char = "\u{631E}"
puts char  # Output: 挞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25374;</p>  <!-- Display: 挞 -->

HTML Hexadecimal:

<p>HTML hex: &#x631E;</p>  <!-- Display: 挞 -->

URL Encoding:

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

Encodings

MD5:

07ff0e6da7ee80570e78bfa67929d6aa

SHA1:

80d02464ade525fb362f86282555e0b324331ccc

Base64:

5oye