Unicode Finder

"瘿" U+763F(CJK UNIFIED IDEOGRAPH-763F)

U+763F
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-763F

Programming

C
\u763F
JavaScript
\u763F
Java
\u763F
Json
\u763F
Python
\u763F
Perl
\x{763F}
PHP
\x{763F}
Ruby
\u{763F}
Rust
\u{763F}
Go
\u763F

Web

CSS
\00763F
HtmlDecimal
瘿
HtmlHexadecimal
瘿
Url
%E7%98%BF

Code

MD5
32d07eafe408d9a83d35435f6d254835
Sha1
7c4b774e8c0c1530e555552d4f2b6dafc3a48dfe
Base64
55i/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u763F';
console.log(char);  // Output: 瘿

Java:

char c = '\u763F';
System.out.println(c);  // Output: 瘿

JSON:

{"text": "\u763F"}  // Value: 瘿

Python:

char = '\u763F'
print(char)  # Output: 瘿

Perl:

my $char = "\x{763F}";
print $char;  # Output: 瘿

PHP:

$char = "\x{763F}";
echo $char;  // Output: 瘿

Ruby:

char = "\u{763F}"
puts char  # Output: 瘿

Rust:

let c = '\u{763F}';
println!("{}", c);  // Output: 瘿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00763F";  /* Display: 瘿 */
}

HTML Decimal:

<p>HTML decimal: &#30271;</p>  <!-- Display: 瘿 -->

HTML Hexadecimal:

<p>HTML hex: &#x763F;</p>  <!-- Display: 瘿 -->

URL Encoding:

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

Encodings

MD5:

32d07eafe408d9a83d35435f6d254835

SHA1:

7c4b774e8c0c1530e555552d4f2b6dafc3a48dfe

Base64:

55i/