Unicode Finder

"畱" U+7571(CJK UNIFIED IDEOGRAPH-7571)

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

Programming

C
\u7571
JavaScript
\u7571
Java
\u7571
Json
\u7571
Python
\u7571
Perl
\x{7571}
PHP
\x{7571}
Ruby
\u{7571}
Rust
\u{7571}
Go
\u7571

Web

CSS
\007571
HtmlDecimal
畱
HtmlHexadecimal
畱
Url
%E7%95%B1

Code

MD5
c35779f77851cdf3354a74f25b7d74e8
Sha1
982c2b472ec5aaf9330f9be13c86b21ae70f0cf1
Base64
55Wx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7571';
console.log(char);  // Output: 畱

Java:

char c = '\u7571';
System.out.println(c);  // Output: 畱

JSON:

{"text": "\u7571"}  // Value: 畱

Python:

char = '\u7571'
print(char)  # Output: 畱

Perl:

my $char = "\x{7571}";
print $char;  # Output: 畱

PHP:

$char = "\x{7571}";
echo $char;  // Output: 畱

Ruby:

char = "\u{7571}"
puts char  # Output: 畱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007571";  /* Display: 畱 */
}

HTML Decimal:

<p>HTML decimal: &#30065;</p>  <!-- Display: 畱 -->

HTML Hexadecimal:

<p>HTML hex: &#x7571;</p>  <!-- Display: 畱 -->

URL Encoding:

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

Encodings

MD5:

c35779f77851cdf3354a74f25b7d74e8

SHA1:

982c2b472ec5aaf9330f9be13c86b21ae70f0cf1

Base64:

55Wx