Unicode Finder

"簼" U+7C3C(CJK UNIFIED IDEOGRAPH-7C3C)

U+7C3C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7C3C

Programming

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

Web

CSS
\007C3C
HtmlDecimal
簼
HtmlHexadecimal
簼
Url
%E7%B0%BC

Code

MD5
4f4cd12302069c80333309ef49ca989d
Sha1
a61ca08a1f357f19db05054ee2e2054be0a356a3
Base64
57C8

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7C3C';
console.log(char);  // Output: 簼

Java:

char c = '\u7C3C';
System.out.println(c);  // Output: 簼

JSON:

{"text": "\u7C3C"}  // Value: 簼

Python:

char = '\u7C3C'
print(char)  # Output: 簼

Perl:

my $char = "\x{7C3C}";
print $char;  # Output: 簼

PHP:

$char = "\x{7C3C}";
echo $char;  // Output: 簼

Ruby:

char = "\u{7C3C}"
puts char  # Output: 簼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31804;</p>  <!-- Display: 簼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C3C;</p>  <!-- Display: 簼 -->

URL Encoding:

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

Encodings

MD5:

4f4cd12302069c80333309ef49ca989d

SHA1:

a61ca08a1f357f19db05054ee2e2054be0a356a3

Base64:

57C8