Unicode Finder

"畔" U+7554(CJK UNIFIED IDEOGRAPH-7554)

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

Programming

C
\u7554
JavaScript
\u7554
Java
\u7554
Json
\u7554
Python
\u7554
Perl
\x{7554}
PHP
\x{7554}
Ruby
\u{7554}
Rust
\u{7554}
Go
\u7554

Web

CSS
\007554
HtmlDecimal
畔
HtmlHexadecimal
畔
Url
%E7%95%94

Code

MD5
4af602cd092b7b5d541b9c05eb6f8fb5
Sha1
353fa5d0f9e5b3b20958fec59d8def7ff2e396da
Base64
55WU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7554';
console.log(char);  // Output: 畔

Java:

char c = '\u7554';
System.out.println(c);  // Output: 畔

JSON:

{"text": "\u7554"}  // Value: 畔

Python:

char = '\u7554'
print(char)  # Output: 畔

Perl:

my $char = "\x{7554}";
print $char;  # Output: 畔

PHP:

$char = "\x{7554}";
echo $char;  // Output: 畔

Ruby:

char = "\u{7554}"
puts char  # Output: 畔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007554";  /* Display: 畔 */
}

HTML Decimal:

<p>HTML decimal: &#30036;</p>  <!-- Display: 畔 -->

HTML Hexadecimal:

<p>HTML hex: &#x7554;</p>  <!-- Display: 畔 -->

URL Encoding:

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

Encodings

MD5:

4af602cd092b7b5d541b9c05eb6f8fb5

SHA1:

353fa5d0f9e5b3b20958fec59d8def7ff2e396da

Base64:

55WU