Unicode Finder

"坣" U+5763(CJK UNIFIED IDEOGRAPH-5763)

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

Programming

C
\u5763
JavaScript
\u5763
Java
\u5763
Json
\u5763
Python
\u5763
Perl
\x{5763}
PHP
\x{5763}
Ruby
\u{5763}
Rust
\u{5763}
Go
\u5763

Web

CSS
\005763
HtmlDecimal
坣
HtmlHexadecimal
坣
Url
%E5%9D%A3

Code

MD5
0f2c15f167f150eb972419450f19b7a0
Sha1
80e48a607cc2d1d9a4b31f60b4a02078c25fc116
Base64
5Z2j

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5763';
console.log(char);  // Output: 坣

Java:

char c = '\u5763';
System.out.println(c);  // Output: 坣

JSON:

{"text": "\u5763"}  // Value: 坣

Python:

char = '\u5763'
print(char)  # Output: 坣

Perl:

my $char = "\x{5763}";
print $char;  # Output: 坣

PHP:

$char = "\x{5763}";
echo $char;  // Output: 坣

Ruby:

char = "\u{5763}"
puts char  # Output: 坣

Rust:

let c = '\u{5763}';
println!("{}", c);  // Output: 坣

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005763";  /* Display: 坣 */
}

HTML Decimal:

<p>HTML decimal: &#22371;</p>  <!-- Display: 坣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5763;</p>  <!-- Display: 坣 -->

URL Encoding:

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

Encodings

MD5:

0f2c15f167f150eb972419450f19b7a0

SHA1:

80e48a607cc2d1d9a4b31f60b4a02078c25fc116

Base64:

5Z2j