Unicode Finder

"揳" U+63F3(CJK UNIFIED IDEOGRAPH-63F3)

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

Programming

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

Web

CSS
\0063F3
HtmlDecimal
揳
HtmlHexadecimal
揳
Url
%E6%8F%B3

Code

MD5
2a4349cd95c77da03f352a4f6ed05353
Sha1
df53e372d2d20e5aca40d7cdd0bee69d5dedd7f9
Base64
5o+z

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63F3';
console.log(char);  // Output: 揳

Java:

char c = '\u63F3';
System.out.println(c);  // Output: 揳

JSON:

{"text": "\u63F3"}  // Value: 揳

Python:

char = '\u63F3'
print(char)  # Output: 揳

Perl:

my $char = "\x{63F3}";
print $char;  # Output: 揳

PHP:

$char = "\x{63F3}";
echo $char;  // Output: 揳

Ruby:

char = "\u{63F3}"
puts char  # Output: 揳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25587;</p>  <!-- Display: 揳 -->

HTML Hexadecimal:

<p>HTML hex: &#x63F3;</p>  <!-- Display: 揳 -->

URL Encoding:

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

Encodings

MD5:

2a4349cd95c77da03f352a4f6ed05353

SHA1:

df53e372d2d20e5aca40d7cdd0bee69d5dedd7f9

Base64:

5o+z