Unicode Finder

"畖" U+7556(CJK UNIFIED IDEOGRAPH-7556)

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

Programming

C
\u7556
JavaScript
\u7556
Java
\u7556
Json
\u7556
Python
\u7556
Perl
\x{7556}
PHP
\x{7556}
Ruby
\u{7556}
Rust
\u{7556}
Go
\u7556

Web

CSS
\007556
HtmlDecimal
畖
HtmlHexadecimal
畖
Url
%E7%95%96

Code

MD5
1e6a82ed9139029a5894f193bf80e511
Sha1
7decf513480590e4bebff97c476ec28e323c5c6c
Base64
55WW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7556';
console.log(char);  // Output: 畖

Java:

char c = '\u7556';
System.out.println(c);  // Output: 畖

JSON:

{"text": "\u7556"}  // Value: 畖

Python:

char = '\u7556'
print(char)  # Output: 畖

Perl:

my $char = "\x{7556}";
print $char;  # Output: 畖

PHP:

$char = "\x{7556}";
echo $char;  // Output: 畖

Ruby:

char = "\u{7556}"
puts char  # Output: 畖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007556";  /* Display: 畖 */
}

HTML Decimal:

<p>HTML decimal: &#30038;</p>  <!-- Display: 畖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7556;</p>  <!-- Display: 畖 -->

URL Encoding:

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

Encodings

MD5:

1e6a82ed9139029a5894f193bf80e511

SHA1:

7decf513480590e4bebff97c476ec28e323c5c6c

Base64:

55WW