Unicode Finder

"竿" U+7AFF(CJK UNIFIED IDEOGRAPH-7AFF)

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

Programming

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

Web

CSS
\007AFF
HtmlDecimal
竿
HtmlHexadecimal
竿
Url
%E7%AB%BF

Code

MD5
96b8b63cb4e74d63aff0dc11f84b5731
Sha1
69c1cde2c3d4ccd8239349bca0faee1cb653e548
Base64
56u/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7AFF';
console.log(char);  // Output: 竿

Java:

char c = '\u7AFF';
System.out.println(c);  // Output: 竿

JSON:

{"text": "\u7AFF"}  // Value: 竿

Python:

char = '\u7AFF'
print(char)  # Output: 竿

Perl:

my $char = "\x{7AFF}";
print $char;  # Output: 竿

PHP:

$char = "\x{7AFF}";
echo $char;  // Output: 竿

Ruby:

char = "\u{7AFF}"
puts char  # Output: 竿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31487;</p>  <!-- Display: 竿 -->

HTML Hexadecimal:

<p>HTML hex: &#x7AFF;</p>  <!-- Display: 竿 -->

URL Encoding:

// 竿 URL encoding
https://unicodefinder.com/search.php?query=%E7%AB%BF

Encodings

MD5:

96b8b63cb4e74d63aff0dc11f84b5731

SHA1:

69c1cde2c3d4ccd8239349bca0faee1cb653e548

Base64:

56u/