Unicode Finder

"恃" U+6043(CJK UNIFIED IDEOGRAPH-6043)

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

Programming

C
\u6043
JavaScript
\u6043
Java
\u6043
Json
\u6043
Python
\u6043
Perl
\x{6043}
PHP
\x{6043}
Ruby
\u{6043}
Rust
\u{6043}
Go
\u6043

Web

CSS
\006043
HtmlDecimal
恃
HtmlHexadecimal
恃
Url
%E6%81%83

Code

MD5
99642398e652e04336301f94c389c3e4
Sha1
d75e5eef2af9359d98b3102c546227781fcea75e
Base64
5oGD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6043';
console.log(char);  // Output: 恃

Java:

char c = '\u6043';
System.out.println(c);  // Output: 恃

JSON:

{"text": "\u6043"}  // Value: 恃

Python:

char = '\u6043'
print(char)  # Output: 恃

Perl:

my $char = "\x{6043}";
print $char;  # Output: 恃

PHP:

$char = "\x{6043}";
echo $char;  // Output: 恃

Ruby:

char = "\u{6043}"
puts char  # Output: 恃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006043";  /* Display: 恃 */
}

HTML Decimal:

<p>HTML decimal: &#24643;</p>  <!-- Display: 恃 -->

HTML Hexadecimal:

<p>HTML hex: &#x6043;</p>  <!-- Display: 恃 -->

URL Encoding:

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

Encodings

MD5:

99642398e652e04336301f94c389c3e4

SHA1:

d75e5eef2af9359d98b3102c546227781fcea75e

Base64:

5oGD