Unicode Finder

"捵" U+6375(CJK UNIFIED IDEOGRAPH-6375)

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

Programming

C
\u6375
JavaScript
\u6375
Java
\u6375
Json
\u6375
Python
\u6375
Perl
\x{6375}
PHP
\x{6375}
Ruby
\u{6375}
Rust
\u{6375}
Go
\u6375

Web

CSS
\006375
HtmlDecimal
捵
HtmlHexadecimal
捵
Url
%E6%8D%B5

Code

MD5
72a5e7717b1a0858e4958a525e688640
Sha1
f1ea6dfac8ab891e0c8ec7951eb846645ab0bacd
Base64
5o21

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6375';
console.log(char);  // Output: 捵

Java:

char c = '\u6375';
System.out.println(c);  // Output: 捵

JSON:

{"text": "\u6375"}  // Value: 捵

Python:

char = '\u6375'
print(char)  # Output: 捵

Perl:

my $char = "\x{6375}";
print $char;  # Output: 捵

PHP:

$char = "\x{6375}";
echo $char;  // Output: 捵

Ruby:

char = "\u{6375}"
puts char  # Output: 捵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006375";  /* Display: 捵 */
}

HTML Decimal:

<p>HTML decimal: &#25461;</p>  <!-- Display: 捵 -->

HTML Hexadecimal:

<p>HTML hex: &#x6375;</p>  <!-- Display: 捵 -->

URL Encoding:

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

Encodings

MD5:

72a5e7717b1a0858e4958a525e688640

SHA1:

f1ea6dfac8ab891e0c8ec7951eb846645ab0bacd

Base64:

5o21