Unicode Finder

"畵" U+7575(CJK UNIFIED IDEOGRAPH-7575)

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

Programming

C
\u7575
JavaScript
\u7575
Java
\u7575
Json
\u7575
Python
\u7575
Perl
\x{7575}
PHP
\x{7575}
Ruby
\u{7575}
Rust
\u{7575}
Go
\u7575

Web

CSS
\007575
HtmlDecimal
畵
HtmlHexadecimal
畵
Url
%E7%95%B5

Code

MD5
fd69409fc40cc9b7f48679e326bfa772
Sha1
cc0dc4c2db2ade369dcb87c3a72540a6c97b8be5
Base64
55W1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7575';
console.log(char);  // Output: 畵

Java:

char c = '\u7575';
System.out.println(c);  // Output: 畵

JSON:

{"text": "\u7575"}  // Value: 畵

Python:

char = '\u7575'
print(char)  # Output: 畵

Perl:

my $char = "\x{7575}";
print $char;  # Output: 畵

PHP:

$char = "\x{7575}";
echo $char;  // Output: 畵

Ruby:

char = "\u{7575}"
puts char  # Output: 畵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007575";  /* Display: 畵 */
}

HTML Decimal:

<p>HTML decimal: &#30069;</p>  <!-- Display: 畵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7575;</p>  <!-- Display: 畵 -->

URL Encoding:

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

Encodings

MD5:

fd69409fc40cc9b7f48679e326bfa772

SHA1:

cc0dc4c2db2ade369dcb87c3a72540a6c97b8be5

Base64:

55W1