Unicode Finder

"畲" U+7572(CJK UNIFIED IDEOGRAPH-7572)

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

Programming

C
\u7572
JavaScript
\u7572
Java
\u7572
Json
\u7572
Python
\u7572
Perl
\x{7572}
PHP
\x{7572}
Ruby
\u{7572}
Rust
\u{7572}
Go
\u7572

Web

CSS
\007572
HtmlDecimal
畲
HtmlHexadecimal
畲
Url
%E7%95%B2

Code

MD5
2a6a145d24fda292ce61c971e14f8c60
Sha1
075de929619819feb0d755a63d3934dd2c72dbb9
Base64
55Wy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7572';
console.log(char);  // Output: 畲

Java:

char c = '\u7572';
System.out.println(c);  // Output: 畲

JSON:

{"text": "\u7572"}  // Value: 畲

Python:

char = '\u7572'
print(char)  # Output: 畲

Perl:

my $char = "\x{7572}";
print $char;  # Output: 畲

PHP:

$char = "\x{7572}";
echo $char;  // Output: 畲

Ruby:

char = "\u{7572}"
puts char  # Output: 畲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007572";  /* Display: 畲 */
}

HTML Decimal:

<p>HTML decimal: &#30066;</p>  <!-- Display: 畲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7572;</p>  <!-- Display: 畲 -->

URL Encoding:

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

Encodings

MD5:

2a6a145d24fda292ce61c971e14f8c60

SHA1:

075de929619819feb0d755a63d3934dd2c72dbb9

Base64:

55Wy