Unicode Finder

"瘱" U+7631(CJK UNIFIED IDEOGRAPH-7631)

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

Programming

C
\u7631
JavaScript
\u7631
Java
\u7631
Json
\u7631
Python
\u7631
Perl
\x{7631}
PHP
\x{7631}
Ruby
\u{7631}
Rust
\u{7631}
Go
\u7631

Web

CSS
\007631
HtmlDecimal
瘱
HtmlHexadecimal
瘱
Url
%E7%98%B1

Code

MD5
32be2c884c8a2e7e9b5f862fb01bdea2
Sha1
80f37ce02eb9b71eb98b9636716d2451945e5d5d
Base64
55ix

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7631';
console.log(char);  // Output: 瘱

Java:

char c = '\u7631';
System.out.println(c);  // Output: 瘱

JSON:

{"text": "\u7631"}  // Value: 瘱

Python:

char = '\u7631'
print(char)  # Output: 瘱

Perl:

my $char = "\x{7631}";
print $char;  # Output: 瘱

PHP:

$char = "\x{7631}";
echo $char;  // Output: 瘱

Ruby:

char = "\u{7631}"
puts char  # Output: 瘱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007631";  /* Display: 瘱 */
}

HTML Decimal:

<p>HTML decimal: &#30257;</p>  <!-- Display: 瘱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7631;</p>  <!-- Display: 瘱 -->

URL Encoding:

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

Encodings

MD5:

32be2c884c8a2e7e9b5f862fb01bdea2

SHA1:

80f37ce02eb9b71eb98b9636716d2451945e5d5d

Base64:

55ix