Unicode Finder

"笗" U+7B17(CJK UNIFIED IDEOGRAPH-7B17)

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

Programming

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

Web

CSS
\007B17
HtmlDecimal
笗
HtmlHexadecimal
笗
Url
%E7%AC%97

Code

MD5
5301dd3c7fda8a45c94697f0458762f3
Sha1
48fc5de7ed29791a9167bcdb889840b7e74a00b0
Base64
56yX

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B17';
console.log(char);  // Output: 笗

Java:

char c = '\u7B17';
System.out.println(c);  // Output: 笗

JSON:

{"text": "\u7B17"}  // Value: 笗

Python:

char = '\u7B17'
print(char)  # Output: 笗

Perl:

my $char = "\x{7B17}";
print $char;  # Output: 笗

PHP:

$char = "\x{7B17}";
echo $char;  // Output: 笗

Ruby:

char = "\u{7B17}"
puts char  # Output: 笗

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31511;</p>  <!-- Display: 笗 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B17;</p>  <!-- Display: 笗 -->

URL Encoding:

// 笗 URL encoding
https://unicodefinder.com/search.php?query=%E7%AC%97

Encodings

MD5:

5301dd3c7fda8a45c94697f0458762f3

SHA1:

48fc5de7ed29791a9167bcdb889840b7e74a00b0

Base64:

56yX