Unicode Finder

"參" U+53C3(CJK UNIFIED IDEOGRAPH-53C3)

U+53C3
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-53C3

Programming

C
\u53C3
JavaScript
\u53C3
Java
\u53C3
Json
\u53C3
Python
\u53C3
Perl
\x{53C3}
PHP
\x{53C3}
Ruby
\u{53C3}
Rust
\u{53C3}
Go
\u53C3

Web

CSS
\0053C3
HtmlDecimal
參
HtmlHexadecimal
參
Url
%E5%8F%83

Code

MD5
88221323803986114d35675bb0525460
Sha1
0d9f4da7eefca35db9faba8353f84cb3fcbf6eb1
Base64
5Y+D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u53C3';
console.log(char);  // Output: 參

Java:

char c = '\u53C3';
System.out.println(c);  // Output: 參

JSON:

{"text": "\u53C3"}  // Value: 參

Python:

char = '\u53C3'
print(char)  # Output: 參

Perl:

my $char = "\x{53C3}";
print $char;  # Output: 參

PHP:

$char = "\x{53C3}";
echo $char;  // Output: 參

Ruby:

char = "\u{53C3}"
puts char  # Output: 參

Rust:

let c = '\u{53C3}';
println!("{}", c);  // Output: 參

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053C3";  /* Display: 參 */
}

HTML Decimal:

<p>HTML decimal: &#21443;</p>  <!-- Display: 參 -->

HTML Hexadecimal:

<p>HTML hex: &#x53C3;</p>  <!-- Display: 參 -->

URL Encoding:

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

Encodings

MD5:

88221323803986114d35675bb0525460

SHA1:

0d9f4da7eefca35db9faba8353f84cb3fcbf6eb1

Base64:

5Y+D