Unicode Finder

"籱" U+7C71(CJK UNIFIED IDEOGRAPH-7C71)

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

Programming

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

Web

CSS
\007C71
HtmlDecimal
籱
HtmlHexadecimal
籱
Url
%E7%B1%B1

Code

MD5
0ca03fa6f0ede19b540ec60d8c89a9b9
Sha1
a51d2a237d353b4725f4f998113cae4a0f4d9109
Base64
57Gx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7C71';
console.log(char);  // Output: 籱

Java:

char c = '\u7C71';
System.out.println(c);  // Output: 籱

JSON:

{"text": "\u7C71"}  // Value: 籱

Python:

char = '\u7C71'
print(char)  # Output: 籱

Perl:

my $char = "\x{7C71}";
print $char;  # Output: 籱

PHP:

$char = "\x{7C71}";
echo $char;  // Output: 籱

Ruby:

char = "\u{7C71}"
puts char  # Output: 籱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31857;</p>  <!-- Display: 籱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C71;</p>  <!-- Display: 籱 -->

URL Encoding:

// 籱 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%B1

Encodings

MD5:

0ca03fa6f0ede19b540ec60d8c89a9b9

SHA1:

a51d2a237d353b4725f4f998113cae4a0f4d9109

Base64:

57Gx