Unicode Finder

"畒" U+7552(CJK UNIFIED IDEOGRAPH-7552)

U+7552
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7552

Programming

C
\u7552
JavaScript
\u7552
Java
\u7552
Json
\u7552
Python
\u7552
Perl
\x{7552}
PHP
\x{7552}
Ruby
\u{7552}
Rust
\u{7552}
Go
\u7552

Web

CSS
\007552
HtmlDecimal
畒
HtmlHexadecimal
畒
Url
%E7%95%92

Code

MD5
2123504e1787a3121de405419519d578
Sha1
66a027d1dbae19d7e12272e49b0d72515dc7055d
Base64
55WS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7552';
console.log(char);  // Output: 畒

Java:

char c = '\u7552';
System.out.println(c);  // Output: 畒

JSON:

{"text": "\u7552"}  // Value: 畒

Python:

char = '\u7552'
print(char)  # Output: 畒

Perl:

my $char = "\x{7552}";
print $char;  # Output: 畒

PHP:

$char = "\x{7552}";
echo $char;  // Output: 畒

Ruby:

char = "\u{7552}"
puts char  # Output: 畒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007552";  /* Display: 畒 */
}

HTML Decimal:

<p>HTML decimal: &#30034;</p>  <!-- Display: 畒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7552;</p>  <!-- Display: 畒 -->

URL Encoding:

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

Encodings

MD5:

2123504e1787a3121de405419519d578

SHA1:

66a027d1dbae19d7e12272e49b0d72515dc7055d

Base64:

55WS