Unicode Finder

"换" U+6362(CJK UNIFIED IDEOGRAPH-6362)

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

Programming

C
\u6362
JavaScript
\u6362
Java
\u6362
Json
\u6362
Python
\u6362
Perl
\x{6362}
PHP
\x{6362}
Ruby
\u{6362}
Rust
\u{6362}
Go
\u6362

Web

CSS
\006362
HtmlDecimal
换
HtmlHexadecimal
换
Url
%E6%8D%A2

Code

MD5
103512c67949d7eac54ef5dfc0d5880f
Sha1
19c7002c782255ce0d02c26acff9c519ccd05960
Base64
5o2i

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6362';
console.log(char);  // Output: 换

Java:

char c = '\u6362';
System.out.println(c);  // Output: 换

JSON:

{"text": "\u6362"}  // Value: 换

Python:

char = '\u6362'
print(char)  # Output: 换

Perl:

my $char = "\x{6362}";
print $char;  # Output: 换

PHP:

$char = "\x{6362}";
echo $char;  // Output: 换

Ruby:

char = "\u{6362}"
puts char  # Output: 换

Rust:

let c = '\u{6362}';
println!("{}", c);  // Output: 换

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006362";  /* Display: 换 */
}

HTML Decimal:

<p>HTML decimal: &#25442;</p>  <!-- Display: 换 -->

HTML Hexadecimal:

<p>HTML hex: &#x6362;</p>  <!-- Display: 换 -->

URL Encoding:

// 换 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%A2

Encodings

MD5:

103512c67949d7eac54ef5dfc0d5880f

SHA1:

19c7002c782255ce0d02c26acff9c519ccd05960

Base64:

5o2i