Unicode Finder

"罩" U+7F69(CJK UNIFIED IDEOGRAPH-7F69)

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

Programming

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

Web

CSS
\007F69
HtmlDecimal
罩
HtmlHexadecimal
罩
Url
%E7%BD%A9

Code

MD5
055b7aaa6a50efb5f6550031c4025271
Sha1
35eb35bdb520dccbabcfb85da89d1bee23d1b1ef
Base64
572p

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7F69';
console.log(char);  // Output: 罩

Java:

char c = '\u7F69';
System.out.println(c);  // Output: 罩

JSON:

{"text": "\u7F69"}  // Value: 罩

Python:

char = '\u7F69'
print(char)  # Output: 罩

Perl:

my $char = "\x{7F69}";
print $char;  # Output: 罩

PHP:

$char = "\x{7F69}";
echo $char;  // Output: 罩

Ruby:

char = "\u{7F69}"
puts char  # Output: 罩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32617;</p>  <!-- Display: 罩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F69;</p>  <!-- Display: 罩 -->

URL Encoding:

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

Encodings

MD5:

055b7aaa6a50efb5f6550031c4025271

SHA1:

35eb35bdb520dccbabcfb85da89d1bee23d1b1ef

Base64:

572p