Unicode Finder

"瘰" U+7630(CJK UNIFIED IDEOGRAPH-7630)

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

Programming

C
\u7630
JavaScript
\u7630
Java
\u7630
Json
\u7630
Python
\u7630
Perl
\x{7630}
PHP
\x{7630}
Ruby
\u{7630}
Rust
\u{7630}
Go
\u7630

Web

CSS
\007630
HtmlDecimal
瘰
HtmlHexadecimal
瘰
Url
%E7%98%B0

Code

MD5
ae5f69511c19735b5dca0716bf262fef
Sha1
cdff24b82d5d9e8d28b5cb7c586e98c685200120
Base64
55iw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7630';
console.log(char);  // Output: 瘰

Java:

char c = '\u7630';
System.out.println(c);  // Output: 瘰

JSON:

{"text": "\u7630"}  // Value: 瘰

Python:

char = '\u7630'
print(char)  # Output: 瘰

Perl:

my $char = "\x{7630}";
print $char;  # Output: 瘰

PHP:

$char = "\x{7630}";
echo $char;  // Output: 瘰

Ruby:

char = "\u{7630}"
puts char  # Output: 瘰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007630";  /* Display: 瘰 */
}

HTML Decimal:

<p>HTML decimal: &#30256;</p>  <!-- Display: 瘰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7630;</p>  <!-- Display: 瘰 -->

URL Encoding:

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

Encodings

MD5:

ae5f69511c19735b5dca0716bf262fef

SHA1:

cdff24b82d5d9e8d28b5cb7c586e98c685200120

Base64:

55iw