Unicode Finder

"畨" U+7568(CJK UNIFIED IDEOGRAPH-7568)

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

Programming

C
\u7568
JavaScript
\u7568
Java
\u7568
Json
\u7568
Python
\u7568
Perl
\x{7568}
PHP
\x{7568}
Ruby
\u{7568}
Rust
\u{7568}
Go
\u7568

Web

CSS
\007568
HtmlDecimal
畨
HtmlHexadecimal
畨
Url
%E7%95%A8

Code

MD5
367997986537a0503e90c306a3a3f5fe
Sha1
3dfb23f4188270c5397dd29e75852488fffe13c7
Base64
55Wo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7568';
console.log(char);  // Output: 畨

Java:

char c = '\u7568';
System.out.println(c);  // Output: 畨

JSON:

{"text": "\u7568"}  // Value: 畨

Python:

char = '\u7568'
print(char)  # Output: 畨

Perl:

my $char = "\x{7568}";
print $char;  # Output: 畨

PHP:

$char = "\x{7568}";
echo $char;  // Output: 畨

Ruby:

char = "\u{7568}"
puts char  # Output: 畨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007568";  /* Display: 畨 */
}

HTML Decimal:

<p>HTML decimal: &#30056;</p>  <!-- Display: 畨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7568;</p>  <!-- Display: 畨 -->

URL Encoding:

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

Encodings

MD5:

367997986537a0503e90c306a3a3f5fe

SHA1:

3dfb23f4188270c5397dd29e75852488fffe13c7

Base64:

55Wo