Unicode Finder

"拟" U+62DF(CJK UNIFIED IDEOGRAPH-62DF)

U+62DF
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-62DF

Programming

C
\u62DF
JavaScript
\u62DF
Java
\u62DF
Json
\u62DF
Python
\u62DF
Perl
\x{62DF}
PHP
\x{62DF}
Ruby
\u{62DF}
Rust
\u{62DF}
Go
\u62DF

Web

CSS
\0062DF
HtmlDecimal
拟
HtmlHexadecimal
拟
Url
%E6%8B%9F

Code

MD5
38a601a9c7c1eba1b98cc23cd767070c
Sha1
c00adc430507aa45250a47e8b9112e5132e9c510
Base64
5ouf

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62DF';
console.log(char);  // Output: 拟

Java:

char c = '\u62DF';
System.out.println(c);  // Output: 拟

JSON:

{"text": "\u62DF"}  // Value: 拟

Python:

char = '\u62DF'
print(char)  # Output: 拟

Perl:

my $char = "\x{62DF}";
print $char;  # Output: 拟

PHP:

$char = "\x{62DF}";
echo $char;  // Output: 拟

Ruby:

char = "\u{62DF}"
puts char  # Output: 拟

Rust:

let c = '\u{62DF}';
println!("{}", c);  // Output: 拟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0062DF";  /* Display: 拟 */
}

HTML Decimal:

<p>HTML decimal: &#25311;</p>  <!-- Display: 拟 -->

HTML Hexadecimal:

<p>HTML hex: &#x62DF;</p>  <!-- Display: 拟 -->

URL Encoding:

// 拟 URL encoding
https://unicodefinder.com/search.php?query=%E6%8B%9F

Encodings

MD5:

38a601a9c7c1eba1b98cc23cd767070c

SHA1:

c00adc430507aa45250a47e8b9112e5132e9c510

Base64:

5ouf