Unicode Finder

"恒" U+6052(CJK UNIFIED IDEOGRAPH-6052)

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

Programming

C
\u6052
JavaScript
\u6052
Java
\u6052
Json
\u6052
Python
\u6052
Perl
\x{6052}
PHP
\x{6052}
Ruby
\u{6052}
Rust
\u{6052}
Go
\u6052

Web

CSS
\006052
HtmlDecimal
恒
HtmlHexadecimal
恒
Url
%E6%81%92

Code

MD5
023eea003e60de9d57d0b2950c8dd473
Sha1
bc95fc9ba970847ea814398e4f9950b2138a2ee2
Base64
5oGS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6052';
console.log(char);  // Output: 恒

Java:

char c = '\u6052';
System.out.println(c);  // Output: 恒

JSON:

{"text": "\u6052"}  // Value: 恒

Python:

char = '\u6052'
print(char)  # Output: 恒

Perl:

my $char = "\x{6052}";
print $char;  # Output: 恒

PHP:

$char = "\x{6052}";
echo $char;  // Output: 恒

Ruby:

char = "\u{6052}"
puts char  # Output: 恒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006052";  /* Display: 恒 */
}

HTML Decimal:

<p>HTML decimal: &#24658;</p>  <!-- Display: 恒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6052;</p>  <!-- Display: 恒 -->

URL Encoding:

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

Encodings

MD5:

023eea003e60de9d57d0b2950c8dd473

SHA1:

bc95fc9ba970847ea814398e4f9950b2138a2ee2

Base64:

5oGS