Unicode Finder

"揮" U+63EE(CJK UNIFIED IDEOGRAPH-63EE)

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

Programming

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

Web

CSS
\0063EE
HtmlDecimal
揮
HtmlHexadecimal
揮
Url
%E6%8F%AE

Code

MD5
3aa5be97dcc512aff57dfc7cee19eb28
Sha1
73bda9d0bf98713938c3c446bd33e8a85d49fd16
Base64
5o+u

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63EE';
console.log(char);  // Output: 揮

Java:

char c = '\u63EE';
System.out.println(c);  // Output: 揮

JSON:

{"text": "\u63EE"}  // Value: 揮

Python:

char = '\u63EE'
print(char)  # Output: 揮

Perl:

my $char = "\x{63EE}";
print $char;  # Output: 揮

PHP:

$char = "\x{63EE}";
echo $char;  // Output: 揮

Ruby:

char = "\u{63EE}"
puts char  # Output: 揮

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25582;</p>  <!-- Display: 揮 -->

HTML Hexadecimal:

<p>HTML hex: &#x63EE;</p>  <!-- Display: 揮 -->

URL Encoding:

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

Encodings

MD5:

3aa5be97dcc512aff57dfc7cee19eb28

SHA1:

73bda9d0bf98713938c3c446bd33e8a85d49fd16

Base64:

5o+u