Unicode Finder

"瘐" U+7610(CJK UNIFIED IDEOGRAPH-7610)

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

Programming

C
\u7610
JavaScript
\u7610
Java
\u7610
Json
\u7610
Python
\u7610
Perl
\x{7610}
PHP
\x{7610}
Ruby
\u{7610}
Rust
\u{7610}
Go
\u7610

Web

CSS
\007610
HtmlDecimal
瘐
HtmlHexadecimal
瘐
Url
%E7%98%90

Code

MD5
0d75b07b65a35248386680e234673b04
Sha1
7868cf5fc3e83d50082be18ec23805cc10729eed
Base64
55iQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7610';
console.log(char);  // Output: 瘐

Java:

char c = '\u7610';
System.out.println(c);  // Output: 瘐

JSON:

{"text": "\u7610"}  // Value: 瘐

Python:

char = '\u7610'
print(char)  # Output: 瘐

Perl:

my $char = "\x{7610}";
print $char;  # Output: 瘐

PHP:

$char = "\x{7610}";
echo $char;  // Output: 瘐

Ruby:

char = "\u{7610}"
puts char  # Output: 瘐

Rust:

let c = '\u{7610}';
println!("{}", c);  // Output: 瘐

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007610";  /* Display: 瘐 */
}

HTML Decimal:

<p>HTML decimal: &#30224;</p>  <!-- Display: 瘐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7610;</p>  <!-- Display: 瘐 -->

URL Encoding:

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

Encodings

MD5:

0d75b07b65a35248386680e234673b04

SHA1:

7868cf5fc3e83d50082be18ec23805cc10729eed

Base64:

55iQ