Unicode Finder

"柝" U+67DD(CJK UNIFIED IDEOGRAPH-67DD)

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

Programming

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

Web

CSS
\0067DD
HtmlDecimal
柝
HtmlHexadecimal
柝
Url
%E6%9F%9D

Code

MD5
7261ae450422eab4f55e4342d4adb53d
Sha1
22126fb3c7e1834b784b3a17c9ecf70fc5272fc9
Base64
5p+d

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u67DD';
console.log(char);  // Output: 柝

Java:

char c = '\u67DD';
System.out.println(c);  // Output: 柝

JSON:

{"text": "\u67DD"}  // Value: 柝

Python:

char = '\u67DD'
print(char)  # Output: 柝

Perl:

my $char = "\x{67DD}";
print $char;  # Output: 柝

PHP:

$char = "\x{67DD}";
echo $char;  // Output: 柝

Ruby:

char = "\u{67DD}"
puts char  # Output: 柝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26589;</p>  <!-- Display: 柝 -->

HTML Hexadecimal:

<p>HTML hex: &#x67DD;</p>  <!-- Display: 柝 -->

URL Encoding:

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

Encodings

MD5:

7261ae450422eab4f55e4342d4adb53d

SHA1:

22126fb3c7e1834b784b3a17c9ecf70fc5272fc9

Base64:

5p+d