Unicode Finder

"篶" U+7BF6(CJK UNIFIED IDEOGRAPH-7BF6)

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

Programming

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

Web

CSS
\007BF6
HtmlDecimal
篶
HtmlHexadecimal
篶
Url
%E7%AF%B6

Code

MD5
b67ce8e4bd42f3c3cb2afad2b9466847
Sha1
4992c12a773927d7c6581c19a7ee58d2d0b781c4
Base64
56+2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7BF6';
console.log(char);  // Output: 篶

Java:

char c = '\u7BF6';
System.out.println(c);  // Output: 篶

JSON:

{"text": "\u7BF6"}  // Value: 篶

Python:

char = '\u7BF6'
print(char)  # Output: 篶

Perl:

my $char = "\x{7BF6}";
print $char;  # Output: 篶

PHP:

$char = "\x{7BF6}";
echo $char;  // Output: 篶

Ruby:

char = "\u{7BF6}"
puts char  # Output: 篶

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31734;</p>  <!-- Display: 篶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BF6;</p>  <!-- Display: 篶 -->

URL Encoding:

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

Encodings

MD5:

b67ce8e4bd42f3c3cb2afad2b9466847

SHA1:

4992c12a773927d7c6581c19a7ee58d2d0b781c4

Base64:

56+2