Unicode Finder

"匏" U+530F(CJK UNIFIED IDEOGRAPH-530F)

U+530F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-530F

Programming

C
\u530F
JavaScript
\u530F
Java
\u530F
Json
\u530F
Python
\u530F
Perl
\x{530F}
PHP
\x{530F}
Ruby
\u{530F}
Rust
\u{530F}
Go
\u530F

Web

CSS
\00530F
HtmlDecimal
匏
HtmlHexadecimal
匏
Url
%E5%8C%8F

Code

MD5
4bd110aeb54fb22d33a6ddd182e9007f
Sha1
ebc44a12ba9df81417a8178166f50bde66c09f26
Base64
5YyP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u530F';
console.log(char);  // Output: 匏

Java:

char c = '\u530F';
System.out.println(c);  // Output: 匏

JSON:

{"text": "\u530F"}  // Value: 匏

Python:

char = '\u530F'
print(char)  # Output: 匏

Perl:

my $char = "\x{530F}";
print $char;  # Output: 匏

PHP:

$char = "\x{530F}";
echo $char;  // Output: 匏

Ruby:

char = "\u{530F}"
puts char  # Output: 匏

Rust:

let c = '\u{530F}';
println!("{}", c);  // Output: 匏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00530F";  /* Display: 匏 */
}

HTML Decimal:

<p>HTML decimal: &#21263;</p>  <!-- Display: 匏 -->

HTML Hexadecimal:

<p>HTML hex: &#x530F;</p>  <!-- Display: 匏 -->

URL Encoding:

// 匏 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%8F

Encodings

MD5:

4bd110aeb54fb22d33a6ddd182e9007f

SHA1:

ebc44a12ba9df81417a8178166f50bde66c09f26

Base64:

5YyP