Unicode Finder

"瘙" U+7619(CJK UNIFIED IDEOGRAPH-7619)

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

Programming

C
\u7619
JavaScript
\u7619
Java
\u7619
Json
\u7619
Python
\u7619
Perl
\x{7619}
PHP
\x{7619}
Ruby
\u{7619}
Rust
\u{7619}
Go
\u7619

Web

CSS
\007619
HtmlDecimal
瘙
HtmlHexadecimal
瘙
Url
%E7%98%99

Code

MD5
28769746e01e7abe074d53b6b3474dee
Sha1
5079fc57c6d81fe93b29c5038c073c3788341771
Base64
55iZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7619';
console.log(char);  // Output: 瘙

Java:

char c = '\u7619';
System.out.println(c);  // Output: 瘙

JSON:

{"text": "\u7619"}  // Value: 瘙

Python:

char = '\u7619'
print(char)  # Output: 瘙

Perl:

my $char = "\x{7619}";
print $char;  # Output: 瘙

PHP:

$char = "\x{7619}";
echo $char;  // Output: 瘙

Ruby:

char = "\u{7619}"
puts char  # Output: 瘙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007619";  /* Display: 瘙 */
}

HTML Decimal:

<p>HTML decimal: &#30233;</p>  <!-- Display: 瘙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7619;</p>  <!-- Display: 瘙 -->

URL Encoding:

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

Encodings

MD5:

28769746e01e7abe074d53b6b3474dee

SHA1:

5079fc57c6d81fe93b29c5038c073c3788341771

Base64:

55iZ