Unicode Finder

"柲" U+67F2(CJK UNIFIED IDEOGRAPH-67F2)

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

Programming

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

Web

CSS
\0067F2
HtmlDecimal
柲
HtmlHexadecimal
柲
Url
%E6%9F%B2

Code

MD5
93e6d4aa7f0acaee9a53b05857e68a70
Sha1
0fb19f138ce7ecd6881d6e0ec72c8f950c949bbd
Base64
5p+y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67F2';
console.log(char);  // Output: 柲

Java:

char c = '\u67F2';
System.out.println(c);  // Output: 柲

JSON:

{"text": "\u67F2"}  // Value: 柲

Python:

char = '\u67F2'
print(char)  # Output: 柲

Perl:

my $char = "\x{67F2}";
print $char;  # Output: 柲

PHP:

$char = "\x{67F2}";
echo $char;  // Output: 柲

Ruby:

char = "\u{67F2}"
puts char  # Output: 柲

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26610;</p>  <!-- Display: 柲 -->

HTML Hexadecimal:

<p>HTML hex: &#x67F2;</p>  <!-- Display: 柲 -->

URL Encoding:

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

Encodings

MD5:

93e6d4aa7f0acaee9a53b05857e68a70

SHA1:

0fb19f138ce7ecd6881d6e0ec72c8f950c949bbd

Base64:

5p+y