Unicode Finder

"瘑" U+7611(CJK UNIFIED IDEOGRAPH-7611)

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

Programming

C
\u7611
JavaScript
\u7611
Java
\u7611
Json
\u7611
Python
\u7611
Perl
\x{7611}
PHP
\x{7611}
Ruby
\u{7611}
Rust
\u{7611}
Go
\u7611

Web

CSS
\007611
HtmlDecimal
瘑
HtmlHexadecimal
瘑
Url
%E7%98%91

Code

MD5
018e62201f6249f11746c333fa69f5d2
Sha1
ccc74ab2f4666cee933773f25ad3a4810c599479
Base64
55iR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7611';
console.log(char);  // Output: 瘑

Java:

char c = '\u7611';
System.out.println(c);  // Output: 瘑

JSON:

{"text": "\u7611"}  // Value: 瘑

Python:

char = '\u7611'
print(char)  # Output: 瘑

Perl:

my $char = "\x{7611}";
print $char;  # Output: 瘑

PHP:

$char = "\x{7611}";
echo $char;  // Output: 瘑

Ruby:

char = "\u{7611}"
puts char  # Output: 瘑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007611";  /* Display: 瘑 */
}

HTML Decimal:

<p>HTML decimal: &#30225;</p>  <!-- Display: 瘑 -->

HTML Hexadecimal:

<p>HTML hex: &#x7611;</p>  <!-- Display: 瘑 -->

URL Encoding:

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

Encodings

MD5:

018e62201f6249f11746c333fa69f5d2

SHA1:

ccc74ab2f4666cee933773f25ad3a4810c599479

Base64:

55iR