Unicode Finder

"畃" U+7543(CJK UNIFIED IDEOGRAPH-7543)

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

Programming

C
\u7543
JavaScript
\u7543
Java
\u7543
Json
\u7543
Python
\u7543
Perl
\x{7543}
PHP
\x{7543}
Ruby
\u{7543}
Rust
\u{7543}
Go
\u7543

Web

CSS
\007543
HtmlDecimal
畃
HtmlHexadecimal
畃
Url
%E7%95%83

Code

MD5
ff8981f3f01900ceb7df9ff31b0d3294
Sha1
ac8b662c290cd2b85173052462ea8e73dd5a9e10
Base64
55WD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7543';
console.log(char);  // Output: 畃

Java:

char c = '\u7543';
System.out.println(c);  // Output: 畃

JSON:

{"text": "\u7543"}  // Value: 畃

Python:

char = '\u7543'
print(char)  # Output: 畃

Perl:

my $char = "\x{7543}";
print $char;  # Output: 畃

PHP:

$char = "\x{7543}";
echo $char;  // Output: 畃

Ruby:

char = "\u{7543}"
puts char  # Output: 畃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007543";  /* Display: 畃 */
}

HTML Decimal:

<p>HTML decimal: &#30019;</p>  <!-- Display: 畃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7543;</p>  <!-- Display: 畃 -->

URL Encoding:

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

Encodings

MD5:

ff8981f3f01900ceb7df9ff31b0d3294

SHA1:

ac8b662c290cd2b85173052462ea8e73dd5a9e10

Base64:

55WD