Unicode Finder

"恝" U+605D(CJK UNIFIED IDEOGRAPH-605D)

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

Programming

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

Web

CSS
\00605D
HtmlDecimal
恝
HtmlHexadecimal
恝
Url
%E6%81%9D

Code

MD5
cfcb8efc49c50d624c5cb9283f1b020c
Sha1
4415bae677c1270f877b406c07cebf5a7f0f06c4
Base64
5oGd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u605D';
console.log(char);  // Output: 恝

Java:

char c = '\u605D';
System.out.println(c);  // Output: 恝

JSON:

{"text": "\u605D"}  // Value: 恝

Python:

char = '\u605D'
print(char)  # Output: 恝

Perl:

my $char = "\x{605D}";
print $char;  # Output: 恝

PHP:

$char = "\x{605D}";
echo $char;  // Output: 恝

Ruby:

char = "\u{605D}"
puts char  # Output: 恝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24669;</p>  <!-- Display: 恝 -->

HTML Hexadecimal:

<p>HTML hex: &#x605D;</p>  <!-- Display: 恝 -->

URL Encoding:

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

Encodings

MD5:

cfcb8efc49c50d624c5cb9283f1b020c

SHA1:

4415bae677c1270f877b406c07cebf5a7f0f06c4

Base64:

5oGd