Unicode Finder

"晥" U+6665(CJK UNIFIED IDEOGRAPH-6665)

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

Programming

C
\u6665
JavaScript
\u6665
Java
\u6665
Json
\u6665
Python
\u6665
Perl
\x{6665}
PHP
\x{6665}
Ruby
\u{6665}
Rust
\u{6665}
Go
\u6665

Web

CSS
\006665
HtmlDecimal
晥
HtmlHexadecimal
晥
Url
%E6%99%A5

Code

MD5
ae87860f89831db0377965fcda0d1209
Sha1
65d40f8af52c03cbbe8d7313780ee368b2d013b9
Base64
5pml

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6665';
console.log(char);  // Output: 晥

Java:

char c = '\u6665';
System.out.println(c);  // Output: 晥

JSON:

{"text": "\u6665"}  // Value: 晥

Python:

char = '\u6665'
print(char)  # Output: 晥

Perl:

my $char = "\x{6665}";
print $char;  # Output: 晥

PHP:

$char = "\x{6665}";
echo $char;  // Output: 晥

Ruby:

char = "\u{6665}"
puts char  # Output: 晥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006665";  /* Display: 晥 */
}

HTML Decimal:

<p>HTML decimal: &#26213;</p>  <!-- Display: 晥 -->

HTML Hexadecimal:

<p>HTML hex: &#x6665;</p>  <!-- Display: 晥 -->

URL Encoding:

// 晥 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%A5

Encodings

MD5:

ae87860f89831db0377965fcda0d1209

SHA1:

65d40f8af52c03cbbe8d7313780ee368b2d013b9

Base64:

5pml