Unicode Finder

"恥" U+6065(CJK UNIFIED IDEOGRAPH-6065)

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

Programming

C
\u6065
JavaScript
\u6065
Java
\u6065
Json
\u6065
Python
\u6065
Perl
\x{6065}
PHP
\x{6065}
Ruby
\u{6065}
Rust
\u{6065}
Go
\u6065

Web

CSS
\006065
HtmlDecimal
恥
HtmlHexadecimal
恥
Url
%E6%81%A5

Code

MD5
6726fdf48887a724d668884141737fb7
Sha1
fc7940a1eeb25f52c08a76d81de50033f58c19cd
Base64
5oGl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6065';
console.log(char);  // Output: 恥

Java:

char c = '\u6065';
System.out.println(c);  // Output: 恥

JSON:

{"text": "\u6065"}  // Value: 恥

Python:

char = '\u6065'
print(char)  # Output: 恥

Perl:

my $char = "\x{6065}";
print $char;  # Output: 恥

PHP:

$char = "\x{6065}";
echo $char;  // Output: 恥

Ruby:

char = "\u{6065}"
puts char  # Output: 恥

Rust:

let c = '\u{6065}';
println!("{}", c);  // Output: 恥

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006065";  /* Display: 恥 */
}

HTML Decimal:

<p>HTML decimal: &#24677;</p>  <!-- Display: 恥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6065;</p>  <!-- Display: 恥 -->

URL Encoding:

// 恥 URL encoding
https://unicodefinder.com/search.php?query=%E6%81%A5

Encodings

MD5:

6726fdf48887a724d668884141737fb7

SHA1:

fc7940a1eeb25f52c08a76d81de50033f58c19cd

Base64:

5oGl