Unicode Finder

"篻" U+7BFB(CJK UNIFIED IDEOGRAPH-7BFB)

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

Programming

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

Web

CSS
\007BFB
HtmlDecimal
篻
HtmlHexadecimal
篻
Url
%E7%AF%BB

Code

MD5
b543498636c69880591231bd9ef1166b
Sha1
78e4073bbea477baf49dfa88cad4f9f9300cf3fe
Base64
56+7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7BFB';
console.log(char);  // Output: 篻

Java:

char c = '\u7BFB';
System.out.println(c);  // Output: 篻

JSON:

{"text": "\u7BFB"}  // Value: 篻

Python:

char = '\u7BFB'
print(char)  # Output: 篻

Perl:

my $char = "\x{7BFB}";
print $char;  # Output: 篻

PHP:

$char = "\x{7BFB}";
echo $char;  // Output: 篻

Ruby:

char = "\u{7BFB}"
puts char  # Output: 篻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31739;</p>  <!-- Display: 篻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BFB;</p>  <!-- Display: 篻 -->

URL Encoding:

// 篻 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%BB

Encodings

MD5:

b543498636c69880591231bd9ef1166b

SHA1:

78e4073bbea477baf49dfa88cad4f9f9300cf3fe

Base64:

56+7