Unicode Finder

"恗" U+6057(CJK UNIFIED IDEOGRAPH-6057)

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

Programming

C
\u6057
JavaScript
\u6057
Java
\u6057
Json
\u6057
Python
\u6057
Perl
\x{6057}
PHP
\x{6057}
Ruby
\u{6057}
Rust
\u{6057}
Go
\u6057

Web

CSS
\006057
HtmlDecimal
恗
HtmlHexadecimal
恗
Url
%E6%81%97

Code

MD5
7c7955391a3768f57152c9d52f66688d
Sha1
1b82cb373822cd8346efda1e032cef4afc247342
Base64
5oGX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6057';
console.log(char);  // Output: 恗

Java:

char c = '\u6057';
System.out.println(c);  // Output: 恗

JSON:

{"text": "\u6057"}  // Value: 恗

Python:

char = '\u6057'
print(char)  # Output: 恗

Perl:

my $char = "\x{6057}";
print $char;  # Output: 恗

PHP:

$char = "\x{6057}";
echo $char;  // Output: 恗

Ruby:

char = "\u{6057}"
puts char  # Output: 恗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006057";  /* Display: 恗 */
}

HTML Decimal:

<p>HTML decimal: &#24663;</p>  <!-- Display: 恗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6057;</p>  <!-- Display: 恗 -->

URL Encoding:

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

Encodings

MD5:

7c7955391a3768f57152c9d52f66688d

SHA1:

1b82cb373822cd8346efda1e032cef4afc247342

Base64:

5oGX