Unicode Finder

"插" U+63D2(CJK UNIFIED IDEOGRAPH-63D2)

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

Programming

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

Web

CSS
\0063D2
HtmlDecimal
插
HtmlHexadecimal
插
Url
%E6%8F%92

Code

MD5
33dc32d0a35e6f43f2282c805f7317a2
Sha1
f565170b6f56f17ccc86928b788ecb4c9b2368a8
Base64
5o+S

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63D2';
console.log(char);  // Output: 插

Java:

char c = '\u63D2';
System.out.println(c);  // Output: 插

JSON:

{"text": "\u63D2"}  // Value: 插

Python:

char = '\u63D2'
print(char)  # Output: 插

Perl:

my $char = "\x{63D2}";
print $char;  # Output: 插

PHP:

$char = "\x{63D2}";
echo $char;  // Output: 插

Ruby:

char = "\u{63D2}"
puts char  # Output: 插

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25554;</p>  <!-- Display: 插 -->

HTML Hexadecimal:

<p>HTML hex: &#x63D2;</p>  <!-- Display: 插 -->

URL Encoding:

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

Encodings

MD5:

33dc32d0a35e6f43f2282c805f7317a2

SHA1:

f565170b6f56f17ccc86928b788ecb4c9b2368a8

Base64:

5o+S