Unicode Finder

"笁" U+7B01(CJK UNIFIED IDEOGRAPH-7B01)

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

Programming

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

Web

CSS
\007B01
HtmlDecimal
笁
HtmlHexadecimal
笁
Url
%E7%AC%81

Code

MD5
7485a07a0fd2f8eaad5adbdaa4895d76
Sha1
ee5d60a02278dcef63c8b9aa2d6a4b5bd64a59a4
Base64
56yB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7B01';
console.log(char);  // Output: 笁

Java:

char c = '\u7B01';
System.out.println(c);  // Output: 笁

JSON:

{"text": "\u7B01"}  // Value: 笁

Python:

char = '\u7B01'
print(char)  # Output: 笁

Perl:

my $char = "\x{7B01}";
print $char;  # Output: 笁

PHP:

$char = "\x{7B01}";
echo $char;  // Output: 笁

Ruby:

char = "\u{7B01}"
puts char  # Output: 笁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31489;</p>  <!-- Display: 笁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B01;</p>  <!-- Display: 笁 -->

URL Encoding:

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

Encodings

MD5:

7485a07a0fd2f8eaad5adbdaa4895d76

SHA1:

ee5d60a02278dcef63c8b9aa2d6a4b5bd64a59a4

Base64:

56yB