Unicode Finder

"罳" U+7F73(CJK UNIFIED IDEOGRAPH-7F73)

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

Programming

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

Web

CSS
\007F73
HtmlDecimal
罳
HtmlHexadecimal
罳
Url
%E7%BD%B3

Code

MD5
6ae403ba163d141000c9d90953b32613
Sha1
8de5b162d503d696b0aa81bb0f7f3688cfd46538
Base64
572z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F73';
console.log(char);  // Output: 罳

Java:

char c = '\u7F73';
System.out.println(c);  // Output: 罳

JSON:

{"text": "\u7F73"}  // Value: 罳

Python:

char = '\u7F73'
print(char)  # Output: 罳

Perl:

my $char = "\x{7F73}";
print $char;  # Output: 罳

PHP:

$char = "\x{7F73}";
echo $char;  // Output: 罳

Ruby:

char = "\u{7F73}"
puts char  # Output: 罳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32627;</p>  <!-- Display: 罳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F73;</p>  <!-- Display: 罳 -->

URL Encoding:

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

Encodings

MD5:

6ae403ba163d141000c9d90953b32613

SHA1:

8de5b162d503d696b0aa81bb0f7f3688cfd46538

Base64:

572z