Unicode Finder

"就" U+5C31(CJK UNIFIED IDEOGRAPH-5C31)

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

Programming

C
\u5C31
JavaScript
\u5C31
Java
\u5C31
Json
\u5C31
Python
\u5C31
Perl
\x{5C31}
PHP
\x{5C31}
Ruby
\u{5C31}
Rust
\u{5C31}
Go
\u5C31

Web

CSS
\005C31
HtmlDecimal
就
HtmlHexadecimal
就
Url
%E5%B0%B1

Code

MD5
1ff3ffeeb15e0f7a410e5c8cdc413955
Sha1
cc4858af41b5ce3e08aa3667b434c710ce49a9a3
Base64
5bCx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5C31';
console.log(char);  // Output: 就

Java:

char c = '\u5C31';
System.out.println(c);  // Output: 就

JSON:

{"text": "\u5C31"}  // Value: 就

Python:

char = '\u5C31'
print(char)  # Output: 就

Perl:

my $char = "\x{5C31}";
print $char;  # Output: 就

PHP:

$char = "\x{5C31}";
echo $char;  // Output: 就

Ruby:

char = "\u{5C31}"
puts char  # Output: 就

Rust:

let c = '\u{5C31}';
println!("{}", c);  // Output: 就

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005C31";  /* Display: 就 */
}

HTML Decimal:

<p>HTML decimal: &#23601;</p>  <!-- Display: 就 -->

HTML Hexadecimal:

<p>HTML hex: &#x5C31;</p>  <!-- Display: 就 -->

URL Encoding:

// 就 URL encoding
https://unicodefinder.com/search.php?query=%E5%B0%B1

Encodings

MD5:

1ff3ffeeb15e0f7a410e5c8cdc413955

SHA1:

cc4858af41b5ce3e08aa3667b434c710ce49a9a3

Base64:

5bCx