Unicode Finder

"恑" U+6051(CJK UNIFIED IDEOGRAPH-6051)

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

Programming

C
\u6051
JavaScript
\u6051
Java
\u6051
Json
\u6051
Python
\u6051
Perl
\x{6051}
PHP
\x{6051}
Ruby
\u{6051}
Rust
\u{6051}
Go
\u6051

Web

CSS
\006051
HtmlDecimal
恑
HtmlHexadecimal
恑
Url
%E6%81%91

Code

MD5
1fc2e8f7f351c8b49afdbe0514d27570
Sha1
dc51fc41e5947c299600e8def76a810a809f0143
Base64
5oGR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6051';
console.log(char);  // Output: 恑

Java:

char c = '\u6051';
System.out.println(c);  // Output: 恑

JSON:

{"text": "\u6051"}  // Value: 恑

Python:

char = '\u6051'
print(char)  # Output: 恑

Perl:

my $char = "\x{6051}";
print $char;  # Output: 恑

PHP:

$char = "\x{6051}";
echo $char;  // Output: 恑

Ruby:

char = "\u{6051}"
puts char  # Output: 恑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006051";  /* Display: 恑 */
}

HTML Decimal:

<p>HTML decimal: &#24657;</p>  <!-- Display: 恑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6051;</p>  <!-- Display: 恑 -->

URL Encoding:

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

Encodings

MD5:

1fc2e8f7f351c8b49afdbe0514d27570

SHA1:

dc51fc41e5947c299600e8def76a810a809f0143

Base64:

5oGR