Unicode Finder

"瘵" U+7635(CJK UNIFIED IDEOGRAPH-7635)

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

Programming

C
\u7635
JavaScript
\u7635
Java
\u7635
Json
\u7635
Python
\u7635
Perl
\x{7635}
PHP
\x{7635}
Ruby
\u{7635}
Rust
\u{7635}
Go
\u7635

Web

CSS
\007635
HtmlDecimal
瘵
HtmlHexadecimal
瘵
Url
%E7%98%B5

Code

MD5
090e2f81c7333c8373e6f2b1656c2255
Sha1
08afdde49b7a88a5349f1946de3ed63e4f6795d5
Base64
55i1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7635';
console.log(char);  // Output: 瘵

Java:

char c = '\u7635';
System.out.println(c);  // Output: 瘵

JSON:

{"text": "\u7635"}  // Value: 瘵

Python:

char = '\u7635'
print(char)  # Output: 瘵

Perl:

my $char = "\x{7635}";
print $char;  # Output: 瘵

PHP:

$char = "\x{7635}";
echo $char;  // Output: 瘵

Ruby:

char = "\u{7635}"
puts char  # Output: 瘵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007635";  /* Display: 瘵 */
}

HTML Decimal:

<p>HTML decimal: &#30261;</p>  <!-- Display: 瘵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7635;</p>  <!-- Display: 瘵 -->

URL Encoding:

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

Encodings

MD5:

090e2f81c7333c8373e6f2b1656c2255

SHA1:

08afdde49b7a88a5349f1946de3ed63e4f6795d5

Base64:

55i1