Unicode Finder

"罈" U+7F48(CJK UNIFIED IDEOGRAPH-7F48)

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

Programming

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

Web

CSS
\007F48
HtmlDecimal
罈
HtmlHexadecimal
罈
Url
%E7%BD%88

Code

MD5
fea67ee6bc365cc4692235417c9a08c3
Sha1
f5040e564e305745dd8bdd5a70a23624eb631718
Base64
572I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F48';
console.log(char);  // Output: 罈

Java:

char c = '\u7F48';
System.out.println(c);  // Output: 罈

JSON:

{"text": "\u7F48"}  // Value: 罈

Python:

char = '\u7F48'
print(char)  # Output: 罈

Perl:

my $char = "\x{7F48}";
print $char;  # Output: 罈

PHP:

$char = "\x{7F48}";
echo $char;  // Output: 罈

Ruby:

char = "\u{7F48}"
puts char  # Output: 罈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32584;</p>  <!-- Display: 罈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F48;</p>  <!-- Display: 罈 -->

URL Encoding:

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

Encodings

MD5:

fea67ee6bc365cc4692235417c9a08c3

SHA1:

f5040e564e305745dd8bdd5a70a23624eb631718

Base64:

572I