Unicode Finder

"甁" U+7501(CJK UNIFIED IDEOGRAPH-7501)

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

Programming

C
\u7501
JavaScript
\u7501
Java
\u7501
Json
\u7501
Python
\u7501
Perl
\x{7501}
PHP
\x{7501}
Ruby
\u{7501}
Rust
\u{7501}
Go
\u7501

Web

CSS
\007501
HtmlDecimal
甁
HtmlHexadecimal
甁
Url
%E7%94%81

Code

MD5
0a782102f7d8f5cccbb986bdc96e0a0a
Sha1
bf47c159bed9d4bc682021002598a9a78b7182a8
Base64
55SB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7501';
console.log(char);  // Output: 甁

Java:

char c = '\u7501';
System.out.println(c);  // Output: 甁

JSON:

{"text": "\u7501"}  // Value: 甁

Python:

char = '\u7501'
print(char)  # Output: 甁

Perl:

my $char = "\x{7501}";
print $char;  # Output: 甁

PHP:

$char = "\x{7501}";
echo $char;  // Output: 甁

Ruby:

char = "\u{7501}"
puts char  # Output: 甁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007501";  /* Display: 甁 */
}

HTML Decimal:

<p>HTML decimal: &#29953;</p>  <!-- Display: 甁 -->

HTML Hexadecimal:

<p>HTML hex: &#x7501;</p>  <!-- Display: 甁 -->

URL Encoding:

// 甁 URL encoding
https://unicodefinder.com/search.php?query=%E7%94%81

Encodings

MD5:

0a782102f7d8f5cccbb986bdc96e0a0a

SHA1:

bf47c159bed9d4bc682021002598a9a78b7182a8

Base64:

55SB