Unicode Finder

"瘹" U+7639(CJK UNIFIED IDEOGRAPH-7639)

U+7639
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7639

Programming

C
\u7639
JavaScript
\u7639
Java
\u7639
Json
\u7639
Python
\u7639
Perl
\x{7639}
PHP
\x{7639}
Ruby
\u{7639}
Rust
\u{7639}
Go
\u7639

Web

CSS
\007639
HtmlDecimal
瘹
HtmlHexadecimal
瘹
Url
%E7%98%B9

Code

MD5
5801b092b0b26029df87e93cc8d1a7cc
Sha1
be7333a2ec0d9c01e0d663fa07f632446d82f8d3
Base64
55i5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7639';
console.log(char);  // Output: 瘹

Java:

char c = '\u7639';
System.out.println(c);  // Output: 瘹

JSON:

{"text": "\u7639"}  // Value: 瘹

Python:

char = '\u7639'
print(char)  # Output: 瘹

Perl:

my $char = "\x{7639}";
print $char;  # Output: 瘹

PHP:

$char = "\x{7639}";
echo $char;  // Output: 瘹

Ruby:

char = "\u{7639}"
puts char  # Output: 瘹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007639";  /* Display: 瘹 */
}

HTML Decimal:

<p>HTML decimal: &#30265;</p>  <!-- Display: 瘹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7639;</p>  <!-- Display: 瘹 -->

URL Encoding:

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

Encodings

MD5:

5801b092b0b26029df87e93cc8d1a7cc

SHA1:

be7333a2ec0d9c01e0d663fa07f632446d82f8d3

Base64:

55i5