Unicode Finder

"匌" U+530C(CJK UNIFIED IDEOGRAPH-530C)

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

Programming

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

Web

CSS
\00530C
HtmlDecimal
匌
HtmlHexadecimal
匌
Url
%E5%8C%8C

Code

MD5
6ab3374c719836d531dddc9dae2d4a05
Sha1
82b9e212596205df39893d3aff62392f7cd0873a
Base64
5YyM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u530C';
console.log(char);  // Output: 匌

Java:

char c = '\u530C';
System.out.println(c);  // Output: 匌

JSON:

{"text": "\u530C"}  // Value: 匌

Python:

char = '\u530C'
print(char)  # Output: 匌

Perl:

my $char = "\x{530C}";
print $char;  # Output: 匌

PHP:

$char = "\x{530C}";
echo $char;  // Output: 匌

Ruby:

char = "\u{530C}"
puts char  # Output: 匌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21260;</p>  <!-- Display: 匌 -->

HTML Hexadecimal:

<p>HTML hex: &#x530C;</p>  <!-- Display: 匌 -->

URL Encoding:

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

Encodings

MD5:

6ab3374c719836d531dddc9dae2d4a05

SHA1:

82b9e212596205df39893d3aff62392f7cd0873a

Base64:

5YyM