Unicode Finder

"瘛" U+761B(CJK UNIFIED IDEOGRAPH-761B)

U+761B
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-761B

Programming

C
\u761B
JavaScript
\u761B
Java
\u761B
Json
\u761B
Python
\u761B
Perl
\x{761B}
PHP
\x{761B}
Ruby
\u{761B}
Rust
\u{761B}
Go
\u761B

Web

CSS
\00761B
HtmlDecimal
瘛
HtmlHexadecimal
瘛
Url
%E7%98%9B

Code

MD5
675716830f5f5ccac2074db323c99e8b
Sha1
1877ee20ba8bccd39eb601015c9da3f81ff34cee
Base64
55ib

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u761B';
console.log(char);  // Output: 瘛

Java:

char c = '\u761B';
System.out.println(c);  // Output: 瘛

JSON:

{"text": "\u761B"}  // Value: 瘛

Python:

char = '\u761B'
print(char)  # Output: 瘛

Perl:

my $char = "\x{761B}";
print $char;  # Output: 瘛

PHP:

$char = "\x{761B}";
echo $char;  // Output: 瘛

Ruby:

char = "\u{761B}"
puts char  # Output: 瘛

Rust:

let c = '\u{761B}';
println!("{}", c);  // Output: 瘛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00761B";  /* Display: 瘛 */
}

HTML Decimal:

<p>HTML decimal: &#30235;</p>  <!-- Display: 瘛 -->

HTML Hexadecimal:

<p>HTML hex: &#x761B;</p>  <!-- Display: 瘛 -->

URL Encoding:

// 瘛 URL encoding
https://unicodefinder.com/search.php?query=%E7%98%9B

Encodings

MD5:

675716830f5f5ccac2074db323c99e8b

SHA1:

1877ee20ba8bccd39eb601015c9da3f81ff34cee

Base64:

55ib