Unicode Finder

"恲" U+6072(CJK UNIFIED IDEOGRAPH-6072)

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

Programming

C
\u6072
JavaScript
\u6072
Java
\u6072
Json
\u6072
Python
\u6072
Perl
\x{6072}
PHP
\x{6072}
Ruby
\u{6072}
Rust
\u{6072}
Go
\u6072

Web

CSS
\006072
HtmlDecimal
恲
HtmlHexadecimal
恲
Url
%E6%81%B2

Code

MD5
fb2ca3bd00fe16632445cdf609224a86
Sha1
7bab79e3e2560dcb22067d9e7e64ba78ece9dcd0
Base64
5oGy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6072';
console.log(char);  // Output: 恲

Java:

char c = '\u6072';
System.out.println(c);  // Output: 恲

JSON:

{"text": "\u6072"}  // Value: 恲

Python:

char = '\u6072'
print(char)  # Output: 恲

Perl:

my $char = "\x{6072}";
print $char;  # Output: 恲

PHP:

$char = "\x{6072}";
echo $char;  // Output: 恲

Ruby:

char = "\u{6072}"
puts char  # Output: 恲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006072";  /* Display: 恲 */
}

HTML Decimal:

<p>HTML decimal: &#24690;</p>  <!-- Display: 恲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6072;</p>  <!-- Display: 恲 -->

URL Encoding:

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

Encodings

MD5:

fb2ca3bd00fe16632445cdf609224a86

SHA1:

7bab79e3e2560dcb22067d9e7e64ba78ece9dcd0

Base64:

5oGy