Unicode Finder

"筱" U+7B71(CJK UNIFIED IDEOGRAPH-7B71)

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

Programming

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

Web

CSS
\007B71
HtmlDecimal
筱
HtmlHexadecimal
筱
Url
%E7%AD%B1

Code

MD5
54a0191af5b7af3992104f293d277ef0
Sha1
0fe37bf1eb00fe7c2ba37f3f39bf7f2e0251f026
Base64
562x

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B71';
console.log(char);  // Output: 筱

Java:

char c = '\u7B71';
System.out.println(c);  // Output: 筱

JSON:

{"text": "\u7B71"}  // Value: 筱

Python:

char = '\u7B71'
print(char)  # Output: 筱

Perl:

my $char = "\x{7B71}";
print $char;  # Output: 筱

PHP:

$char = "\x{7B71}";
echo $char;  // Output: 筱

Ruby:

char = "\u{7B71}"
puts char  # Output: 筱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31601;</p>  <!-- Display: 筱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B71;</p>  <!-- Display: 筱 -->

URL Encoding:

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

Encodings

MD5:

54a0191af5b7af3992104f293d277ef0

SHA1:

0fe37bf1eb00fe7c2ba37f3f39bf7f2e0251f026

Base64:

562x