Unicode Finder

"柖" U+67D6(CJK UNIFIED IDEOGRAPH-67D6)

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

Programming

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

Web

CSS
\0067D6
HtmlDecimal
柖
HtmlHexadecimal
柖
Url
%E6%9F%96

Code

MD5
4028c898fc02e2112e2ee175842c6c4f
Sha1
75ba4b6cf8cf5955b7007a1b49bc38a6d18e64b1
Base64
5p+W

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67D6';
console.log(char);  // Output: 柖

Java:

char c = '\u67D6';
System.out.println(c);  // Output: 柖

JSON:

{"text": "\u67D6"}  // Value: 柖

Python:

char = '\u67D6'
print(char)  # Output: 柖

Perl:

my $char = "\x{67D6}";
print $char;  # Output: 柖

PHP:

$char = "\x{67D6}";
echo $char;  // Output: 柖

Ruby:

char = "\u{67D6}"
puts char  # Output: 柖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26582;</p>  <!-- Display: 柖 -->

HTML Hexadecimal:

<p>HTML hex: &#x67D6;</p>  <!-- Display: 柖 -->

URL Encoding:

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

Encodings

MD5:

4028c898fc02e2112e2ee175842c6c4f

SHA1:

75ba4b6cf8cf5955b7007a1b49bc38a6d18e64b1

Base64:

5p+W