Unicode Finder

"桝" U+685D(CJK UNIFIED IDEOGRAPH-685D)

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

Programming

C
\u685D
JavaScript
\u685D
Java
\u685D
Json
\u685D
Python
\u685D
Perl
\x{685D}
PHP
\x{685D}
Ruby
\u{685D}
Rust
\u{685D}
Go
\u685D

Web

CSS
\00685D
HtmlDecimal
桝
HtmlHexadecimal
桝
Url
%E6%A1%9D

Code

MD5
ec624e8b6a408f1cc7d735b992ecdb93
Sha1
32e426da06dbcd5cd0ad7ad5750445433d4a2d86
Base64
5qGd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u685D';
console.log(char);  // Output: 桝

Java:

char c = '\u685D';
System.out.println(c);  // Output: 桝

JSON:

{"text": "\u685D"}  // Value: 桝

Python:

char = '\u685D'
print(char)  # Output: 桝

Perl:

my $char = "\x{685D}";
print $char;  # Output: 桝

PHP:

$char = "\x{685D}";
echo $char;  // Output: 桝

Ruby:

char = "\u{685D}"
puts char  # Output: 桝

Rust:

let c = '\u{685D}';
println!("{}", c);  // Output: 桝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00685D";  /* Display: 桝 */
}

HTML Decimal:

<p>HTML decimal: &#26717;</p>  <!-- Display: 桝 -->

HTML Hexadecimal:

<p>HTML hex: &#x685D;</p>  <!-- Display: 桝 -->

URL Encoding:

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

Encodings

MD5:

ec624e8b6a408f1cc7d735b992ecdb93

SHA1:

32e426da06dbcd5cd0ad7ad5750445433d4a2d86

Base64:

5qGd