Unicode Finder

"捧" U+6367(CJK UNIFIED IDEOGRAPH-6367)

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

Programming

C
\u6367
JavaScript
\u6367
Java
\u6367
Json
\u6367
Python
\u6367
Perl
\x{6367}
PHP
\x{6367}
Ruby
\u{6367}
Rust
\u{6367}
Go
\u6367

Web

CSS
\006367
HtmlDecimal
捧
HtmlHexadecimal
捧
Url
%E6%8D%A7

Code

MD5
250ef3223e33d44b2166ebf14ec8d50f
Sha1
b9cd6829d4227e48f34f6e3de2d2bf68a41d0136
Base64
5o2n

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6367';
console.log(char);  // Output: 捧

Java:

char c = '\u6367';
System.out.println(c);  // Output: 捧

JSON:

{"text": "\u6367"}  // Value: 捧

Python:

char = '\u6367'
print(char)  # Output: 捧

Perl:

my $char = "\x{6367}";
print $char;  # Output: 捧

PHP:

$char = "\x{6367}";
echo $char;  // Output: 捧

Ruby:

char = "\u{6367}"
puts char  # Output: 捧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006367";  /* Display: 捧 */
}

HTML Decimal:

<p>HTML decimal: &#25447;</p>  <!-- Display: 捧 -->

HTML Hexadecimal:

<p>HTML hex: &#x6367;</p>  <!-- Display: 捧 -->

URL Encoding:

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

Encodings

MD5:

250ef3223e33d44b2166ebf14ec8d50f

SHA1:

b9cd6829d4227e48f34f6e3de2d2bf68a41d0136

Base64:

5o2n