Unicode Finder

"恁" U+6041(CJK UNIFIED IDEOGRAPH-6041)

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

Programming

C
\u6041
JavaScript
\u6041
Java
\u6041
Json
\u6041
Python
\u6041
Perl
\x{6041}
PHP
\x{6041}
Ruby
\u{6041}
Rust
\u{6041}
Go
\u6041

Web

CSS
\006041
HtmlDecimal
恁
HtmlHexadecimal
恁
Url
%E6%81%81

Code

MD5
de42fc032744f177af78c53df1506131
Sha1
f2b022dadbf4738109d2686a7f56d43e74a601e2
Base64
5oGB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6041';
console.log(char);  // Output: 恁

Java:

char c = '\u6041';
System.out.println(c);  // Output: 恁

JSON:

{"text": "\u6041"}  // Value: 恁

Python:

char = '\u6041'
print(char)  # Output: 恁

Perl:

my $char = "\x{6041}";
print $char;  # Output: 恁

PHP:

$char = "\x{6041}";
echo $char;  // Output: 恁

Ruby:

char = "\u{6041}"
puts char  # Output: 恁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006041";  /* Display: 恁 */
}

HTML Decimal:

<p>HTML decimal: &#24641;</p>  <!-- Display: 恁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6041;</p>  <!-- Display: 恁 -->

URL Encoding:

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

Encodings

MD5:

de42fc032744f177af78c53df1506131

SHA1:

f2b022dadbf4738109d2686a7f56d43e74a601e2

Base64:

5oGB