Unicode Finder

"柀" U+67C0(CJK UNIFIED IDEOGRAPH-67C0)

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

Programming

C
\u67C0
JavaScript
\u67C0
Java
\u67C0
Json
\u67C0
Python
\u67C0
Perl
\x{67C0}
PHP
\x{67C0}
Ruby
\u{67C0}
Rust
\u{67C0}
Go
\u67C0

Web

CSS
\0067C0
HtmlDecimal
柀
HtmlHexadecimal
柀
Url
%E6%9F%80

Code

MD5
67e7b081c397b079dadefa57babb7bc4
Sha1
fb265e9fbb8549bf27fcdc8f3292315258a02691
Base64
5p+A

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67C0';
console.log(char);  // Output: 柀

Java:

char c = '\u67C0';
System.out.println(c);  // Output: 柀

JSON:

{"text": "\u67C0"}  // Value: 柀

Python:

char = '\u67C0'
print(char)  # Output: 柀

Perl:

my $char = "\x{67C0}";
print $char;  # Output: 柀

PHP:

$char = "\x{67C0}";
echo $char;  // Output: 柀

Ruby:

char = "\u{67C0}"
puts char  # Output: 柀

Rust:

let c = '\u{67C0}';
println!("{}", c);  // Output: 柀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0067C0";  /* Display: 柀 */
}

HTML Decimal:

<p>HTML decimal: &#26560;</p>  <!-- Display: 柀 -->

HTML Hexadecimal:

<p>HTML hex: &#x67C0;</p>  <!-- Display: 柀 -->

URL Encoding:

// 柀 URL encoding
https://unicodefinder.com/search.php?query=%E6%9F%80

Encodings

MD5:

67e7b081c397b079dadefa57babb7bc4

SHA1:

fb265e9fbb8549bf27fcdc8f3292315258a02691

Base64:

5p+A