Unicode Finder

"簛" U+7C1B(CJK UNIFIED IDEOGRAPH-7C1B)

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

Programming

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

Web

CSS
\007C1B
HtmlDecimal
簛
HtmlHexadecimal
簛
Url
%E7%B0%9B

Code

MD5
25e637d96d5aa13f0e2ed35eef04e48e
Sha1
b97cbf22a1c1807bf5f3780a34f04c4121c79702
Base64
57Cb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7C1B';
console.log(char);  // Output: 簛

Java:

char c = '\u7C1B';
System.out.println(c);  // Output: 簛

JSON:

{"text": "\u7C1B"}  // Value: 簛

Python:

char = '\u7C1B'
print(char)  # Output: 簛

Perl:

my $char = "\x{7C1B}";
print $char;  # Output: 簛

PHP:

$char = "\x{7C1B}";
echo $char;  // Output: 簛

Ruby:

char = "\u{7C1B}"
puts char  # Output: 簛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31771;</p>  <!-- Display: 簛 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C1B;</p>  <!-- Display: 簛 -->

URL Encoding:

// 簛 URL encoding
https://unicodefinder.com/search.php?query=%E7%B0%9B

Encodings

MD5:

25e637d96d5aa13f0e2ed35eef04e48e

SHA1:

b97cbf22a1c1807bf5f3780a34f04c4121c79702

Base64:

57Cb