Unicode Finder

"揵" U+63F5(CJK UNIFIED IDEOGRAPH-63F5)

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

Programming

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

Web

CSS
\0063F5
HtmlDecimal
揵
HtmlHexadecimal
揵
Url
%E6%8F%B5

Code

MD5
f7df1ce384e86711e30ed1241a0653e3
Sha1
a9c3453dec30bc544d26558938e78d43684a8821
Base64
5o+1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63F5';
console.log(char);  // Output: 揵

Java:

char c = '\u63F5';
System.out.println(c);  // Output: 揵

JSON:

{"text": "\u63F5"}  // Value: 揵

Python:

char = '\u63F5'
print(char)  # Output: 揵

Perl:

my $char = "\x{63F5}";
print $char;  # Output: 揵

PHP:

$char = "\x{63F5}";
echo $char;  // Output: 揵

Ruby:

char = "\u{63F5}"
puts char  # Output: 揵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25589;</p>  <!-- Display: 揵 -->

HTML Hexadecimal:

<p>HTML hex: &#x63F5;</p>  <!-- Display: 揵 -->

URL Encoding:

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

Encodings

MD5:

f7df1ce384e86711e30ed1241a0653e3

SHA1:

a9c3453dec30bc544d26558938e78d43684a8821

Base64:

5o+1