Unicode Finder

"揂" U+63C2(CJK UNIFIED IDEOGRAPH-63C2)

U+63C2
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-63C2

Programming

C
\u63C2
JavaScript
\u63C2
Java
\u63C2
Json
\u63C2
Python
\u63C2
Perl
\x{63C2}
PHP
\x{63C2}
Ruby
\u{63C2}
Rust
\u{63C2}
Go
\u63C2

Web

CSS
\0063C2
HtmlDecimal
揂
HtmlHexadecimal
揂
Url
%E6%8F%82

Code

MD5
2099195cf8d2b35fb8e9c569cfbf3287
Sha1
13133e1340f9ef80a21c4ac03875bcdcd5bcd2bd
Base64
5o+C

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63C2';
console.log(char);  // Output: 揂

Java:

char c = '\u63C2';
System.out.println(c);  // Output: 揂

JSON:

{"text": "\u63C2"}  // Value: 揂

Python:

char = '\u63C2'
print(char)  # Output: 揂

Perl:

my $char = "\x{63C2}";
print $char;  # Output: 揂

PHP:

$char = "\x{63C2}";
echo $char;  // Output: 揂

Ruby:

char = "\u{63C2}"
puts char  # Output: 揂

Rust:

let c = '\u{63C2}';
println!("{}", c);  // Output: 揂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0063C2";  /* Display: 揂 */
}

HTML Decimal:

<p>HTML decimal: &#25538;</p>  <!-- Display: 揂 -->

HTML Hexadecimal:

<p>HTML hex: &#x63C2;</p>  <!-- Display: 揂 -->

URL Encoding:

// 揂 URL encoding
https://unicodefinder.com/search.php?query=%E6%8F%82

Encodings

MD5:

2099195cf8d2b35fb8e9c569cfbf3287

SHA1:

13133e1340f9ef80a21c4ac03875bcdcd5bcd2bd

Base64:

5o+C