Unicode Finder

"簪" U+7C2A(CJK UNIFIED IDEOGRAPH-7C2A)

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

Programming

C
\u7C2A
JavaScript
\u7C2A
Java
\u7C2A
Json
\u7C2A
Python
\u7C2A
Perl
\x{7C2A}
PHP
\x{7C2A}
Ruby
\u{7C2A}
Rust
\u{7C2A}
Go
\u7C2A

Web

CSS
\007C2A
HtmlDecimal
簪
HtmlHexadecimal
簪
Url
%E7%B0%AA

Code

MD5
57e9c26ce10d8f6c6aaddaf22f070e02
Sha1
932f1fb7177a8a52d0cc118132969f933d303d97
Base64
57Cq

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7C2A';
console.log(char);  // Output: 簪

Java:

char c = '\u7C2A';
System.out.println(c);  // Output: 簪

JSON:

{"text": "\u7C2A"}  // Value: 簪

Python:

char = '\u7C2A'
print(char)  # Output: 簪

Perl:

my $char = "\x{7C2A}";
print $char;  # Output: 簪

PHP:

$char = "\x{7C2A}";
echo $char;  // Output: 簪

Ruby:

char = "\u{7C2A}"
puts char  # Output: 簪

Rust:

let c = '\u{7C2A}';
println!("{}", c);  // Output: 簪

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C2A";  /* Display: 簪 */
}

HTML Decimal:

<p>HTML decimal: &#31786;</p>  <!-- Display: 簪 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C2A;</p>  <!-- Display: 簪 -->

URL Encoding:

// 簪 URL encoding
https://unicodefinder.com/search.php?query=%E7%B0%AA

Encodings

MD5:

57e9c26ce10d8f6c6aaddaf22f070e02

SHA1:

932f1fb7177a8a52d0cc118132969f933d303d97

Base64:

57Cq