Unicode Finder

"罒" U+7F52(CJK UNIFIED IDEOGRAPH-7F52)

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

Programming

C
\u7F52
JavaScript
\u7F52
Java
\u7F52
Json
\u7F52
Python
\u7F52
Perl
\x{7F52}
PHP
\x{7F52}
Ruby
\u{7F52}
Rust
\u{7F52}
Go
\u7F52

Web

CSS
\007F52
HtmlDecimal
罒
HtmlHexadecimal
罒
Url
%E7%BD%92

Code

MD5
332077df8a3f89e8a5f3f3c89eee7712
Sha1
ec6d069cdf9a67029573eaa733b64dd47ec5301c
Base64
572S

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F52';
console.log(char);  // Output: 罒

Java:

char c = '\u7F52';
System.out.println(c);  // Output: 罒

JSON:

{"text": "\u7F52"}  // Value: 罒

Python:

char = '\u7F52'
print(char)  # Output: 罒

Perl:

my $char = "\x{7F52}";
print $char;  # Output: 罒

PHP:

$char = "\x{7F52}";
echo $char;  // Output: 罒

Ruby:

char = "\u{7F52}"
puts char  # Output: 罒

Rust:

let c = '\u{7F52}';
println!("{}", c);  // Output: 罒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007F52";  /* Display: 罒 */
}

HTML Decimal:

<p>HTML decimal: &#32594;</p>  <!-- Display: 罒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F52;</p>  <!-- Display: 罒 -->

URL Encoding:

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

Encodings

MD5:

332077df8a3f89e8a5f3f3c89eee7712

SHA1:

ec6d069cdf9a67029573eaa733b64dd47ec5301c

Base64:

572S