Unicode Finder

"畘" U+7558(CJK UNIFIED IDEOGRAPH-7558)

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

Programming

C
\u7558
JavaScript
\u7558
Java
\u7558
Json
\u7558
Python
\u7558
Perl
\x{7558}
PHP
\x{7558}
Ruby
\u{7558}
Rust
\u{7558}
Go
\u7558

Web

CSS
\007558
HtmlDecimal
畘
HtmlHexadecimal
畘
Url
%E7%95%98

Code

MD5
9600aa431d58748308e2ce1bcf31e69c
Sha1
4ad3db7db7db2a724ff7619629e81d70c9dda2a8
Base64
55WY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7558';
console.log(char);  // Output: 畘

Java:

char c = '\u7558';
System.out.println(c);  // Output: 畘

JSON:

{"text": "\u7558"}  // Value: 畘

Python:

char = '\u7558'
print(char)  # Output: 畘

Perl:

my $char = "\x{7558}";
print $char;  # Output: 畘

PHP:

$char = "\x{7558}";
echo $char;  // Output: 畘

Ruby:

char = "\u{7558}"
puts char  # Output: 畘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007558";  /* Display: 畘 */
}

HTML Decimal:

<p>HTML decimal: &#30040;</p>  <!-- Display: 畘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7558;</p>  <!-- Display: 畘 -->

URL Encoding:

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

Encodings

MD5:

9600aa431d58748308e2ce1bcf31e69c

SHA1:

4ad3db7db7db2a724ff7619629e81d70c9dda2a8

Base64:

55WY