Unicode Finder

"畕" U+7555(CJK UNIFIED IDEOGRAPH-7555)

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

Programming

C
\u7555
JavaScript
\u7555
Java
\u7555
Json
\u7555
Python
\u7555
Perl
\x{7555}
PHP
\x{7555}
Ruby
\u{7555}
Rust
\u{7555}
Go
\u7555

Web

CSS
\007555
HtmlDecimal
畕
HtmlHexadecimal
畕
Url
%E7%95%95

Code

MD5
2f0b34687330d93ce415814382b27bb5
Sha1
f98f21f71e349d0f25359d155467297c29d4f011
Base64
55WV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7555';
console.log(char);  // Output: 畕

Java:

char c = '\u7555';
System.out.println(c);  // Output: 畕

JSON:

{"text": "\u7555"}  // Value: 畕

Python:

char = '\u7555'
print(char)  # Output: 畕

Perl:

my $char = "\x{7555}";
print $char;  # Output: 畕

PHP:

$char = "\x{7555}";
echo $char;  // Output: 畕

Ruby:

char = "\u{7555}"
puts char  # Output: 畕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007555";  /* Display: 畕 */
}

HTML Decimal:

<p>HTML decimal: &#30037;</p>  <!-- Display: 畕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7555;</p>  <!-- Display: 畕 -->

URL Encoding:

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

Encodings

MD5:

2f0b34687330d93ce415814382b27bb5

SHA1:

f98f21f71e349d0f25359d155467297c29d4f011

Base64:

55WV