Unicode Finder

"瓶" U+74F6(CJK UNIFIED IDEOGRAPH-74F6)

U+74F6
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-74F6

Programming

C
\u74F6
JavaScript
\u74F6
Java
\u74F6
Json
\u74F6
Python
\u74F6
Perl
\x{74F6}
PHP
\x{74F6}
Ruby
\u{74F6}
Rust
\u{74F6}
Go
\u74F6

Web

CSS
\0074F6
HtmlDecimal
瓶
HtmlHexadecimal
瓶
Url
%E7%93%B6

Code

MD5
0c88bfc874afbba17eeff5139390d2c4
Sha1
2332d349e752309184c041a89494e371a6ee7c3e
Base64
55O2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u74F6';
console.log(char);  // Output: 瓶

Java:

char c = '\u74F6';
System.out.println(c);  // Output: 瓶

JSON:

{"text": "\u74F6"}  // Value: 瓶

Python:

char = '\u74F6'
print(char)  # Output: 瓶

Perl:

my $char = "\x{74F6}";
print $char;  # Output: 瓶

PHP:

$char = "\x{74F6}";
echo $char;  // Output: 瓶

Ruby:

char = "\u{74F6}"
puts char  # Output: 瓶

Rust:

let c = '\u{74F6}';
println!("{}", c);  // Output: 瓶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0074F6";  /* Display: 瓶 */
}

HTML Decimal:

<p>HTML decimal: &#29942;</p>  <!-- Display: 瓶 -->

HTML Hexadecimal:

<p>HTML hex: &#x74F6;</p>  <!-- Display: 瓶 -->

URL Encoding:

// 瓶 URL encoding
https://unicodefinder.com/search.php?query=%E7%93%B6

Encodings

MD5:

0c88bfc874afbba17eeff5139390d2c4

SHA1:

2332d349e752309184c041a89494e371a6ee7c3e

Base64:

55O2