Unicode Finder

"捨" U+6368(CJK UNIFIED IDEOGRAPH-6368)

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

Programming

C
\u6368
JavaScript
\u6368
Java
\u6368
Json
\u6368
Python
\u6368
Perl
\x{6368}
PHP
\x{6368}
Ruby
\u{6368}
Rust
\u{6368}
Go
\u6368

Web

CSS
\006368
HtmlDecimal
捨
HtmlHexadecimal
捨
Url
%E6%8D%A8

Code

MD5
496cb9d54b30a93691fc2b6ac65be2a3
Sha1
e6249fade7dbccefe51e25363974ad4b6974e0af
Base64
5o2o

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6368';
console.log(char);  // Output: 捨

Java:

char c = '\u6368';
System.out.println(c);  // Output: 捨

JSON:

{"text": "\u6368"}  // Value: 捨

Python:

char = '\u6368'
print(char)  # Output: 捨

Perl:

my $char = "\x{6368}";
print $char;  # Output: 捨

PHP:

$char = "\x{6368}";
echo $char;  // Output: 捨

Ruby:

char = "\u{6368}"
puts char  # Output: 捨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006368";  /* Display: 捨 */
}

HTML Decimal:

<p>HTML decimal: &#25448;</p>  <!-- Display: 捨 -->

HTML Hexadecimal:

<p>HTML hex: &#x6368;</p>  <!-- Display: 捨 -->

URL Encoding:

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

Encodings

MD5:

496cb9d54b30a93691fc2b6ac65be2a3

SHA1:

e6249fade7dbccefe51e25363974ad4b6974e0af

Base64:

5o2o