Unicode Finder

"杌" U+674C(CJK UNIFIED IDEOGRAPH-674C)

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

Programming

C
\u674C
JavaScript
\u674C
Java
\u674C
Json
\u674C
Python
\u674C
Perl
\x{674C}
PHP
\x{674C}
Ruby
\u{674C}
Rust
\u{674C}
Go
\u674C

Web

CSS
\00674C
HtmlDecimal
杌
HtmlHexadecimal
杌
Url
%E6%9D%8C

Code

MD5
7f2a63928e84288e3c22888ea9577177
Sha1
51f35b49d7c2028e2effb314db099f2c0da5c5c3
Base64
5p2M

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u674C';
console.log(char);  // Output: 杌

Java:

char c = '\u674C';
System.out.println(c);  // Output: 杌

JSON:

{"text": "\u674C"}  // Value: 杌

Python:

char = '\u674C'
print(char)  # Output: 杌

Perl:

my $char = "\x{674C}";
print $char;  # Output: 杌

PHP:

$char = "\x{674C}";
echo $char;  // Output: 杌

Ruby:

char = "\u{674C}"
puts char  # Output: 杌

Rust:

let c = '\u{674C}';
println!("{}", c);  // Output: 杌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00674C";  /* Display: 杌 */
}

HTML Decimal:

<p>HTML decimal: &#26444;</p>  <!-- Display: 杌 -->

HTML Hexadecimal:

<p>HTML hex: &#x674C;</p>  <!-- Display: 杌 -->

URL Encoding:

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

Encodings

MD5:

7f2a63928e84288e3c22888ea9577177

SHA1:

51f35b49d7c2028e2effb314db099f2c0da5c5c3

Base64:

5p2M