Unicode Finder

"協" U+5354(CJK UNIFIED IDEOGRAPH-5354)

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

Programming

C
\u5354
JavaScript
\u5354
Java
\u5354
Json
\u5354
Python
\u5354
Perl
\x{5354}
PHP
\x{5354}
Ruby
\u{5354}
Rust
\u{5354}
Go
\u5354

Web

CSS
\005354
HtmlDecimal
協
HtmlHexadecimal
協
Url
%E5%8D%94

Code

MD5
e8c4fd303ab805627038c355f42a5f79
Sha1
e0677954f9c7dd8b2afbc3eae12f790b8bf02178
Base64
5Y2U

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5354';
console.log(char);  // Output: 協

Java:

char c = '\u5354';
System.out.println(c);  // Output: 協

JSON:

{"text": "\u5354"}  // Value: 協

Python:

char = '\u5354'
print(char)  # Output: 協

Perl:

my $char = "\x{5354}";
print $char;  # Output: 協

PHP:

$char = "\x{5354}";
echo $char;  // Output: 協

Ruby:

char = "\u{5354}"
puts char  # Output: 協

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005354";  /* Display: 協 */
}

HTML Decimal:

<p>HTML decimal: &#21332;</p>  <!-- Display: 協 -->

HTML Hexadecimal:

<p>HTML hex: &#x5354;</p>  <!-- Display: 協 -->

URL Encoding:

// 協 URL encoding
https://unicodefinder.com/search.php?query=%E5%8D%94

Encodings

MD5:

e8c4fd303ab805627038c355f42a5f79

SHA1:

e0677954f9c7dd8b2afbc3eae12f790b8bf02178

Base64:

5Y2U