Unicode Finder

"又" U+53C8(CJK UNIFIED IDEOGRAPH-53C8)

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

Programming

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

Web

CSS
\0053C8
HtmlDecimal
又
HtmlHexadecimal
又
Url
%E5%8F%88

Code

MD5
1689ddd7ffc805948f5874284455dd2d
Sha1
4c2b677cfdc75c37439de6f8469dc759c1048f50
Base64
5Y+I

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u53C8';
console.log(char);  // Output: 又

Java:

char c = '\u53C8';
System.out.println(c);  // Output: 又

JSON:

{"text": "\u53C8"}  // Value: 又

Python:

char = '\u53C8'
print(char)  # Output: 又

Perl:

my $char = "\x{53C8}";
print $char;  # Output: 又

PHP:

$char = "\x{53C8}";
echo $char;  // Output: 又

Ruby:

char = "\u{53C8}"
puts char  # Output: 又

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21448;</p>  <!-- Display: 又 -->

HTML Hexadecimal:

<p>HTML hex: &#x53C8;</p>  <!-- Display: 又 -->

URL Encoding:

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

Encodings

MD5:

1689ddd7ffc805948f5874284455dd2d

SHA1:

4c2b677cfdc75c37439de6f8469dc759c1048f50

Base64:

5Y+I