Unicode Finder

"晳" U+6673(CJK UNIFIED IDEOGRAPH-6673)

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

Programming

C
\u6673
JavaScript
\u6673
Java
\u6673
Json
\u6673
Python
\u6673
Perl
\x{6673}
PHP
\x{6673}
Ruby
\u{6673}
Rust
\u{6673}
Go
\u6673

Web

CSS
\006673
HtmlDecimal
晳
HtmlHexadecimal
晳
Url
%E6%99%B3

Code

MD5
6099ea4612a69b3ef34446968beb573d
Sha1
3f1c4b49fde3a14216b4ab0aebe7a4b863b2bb7f
Base64
5pmz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6673';
console.log(char);  // Output: 晳

Java:

char c = '\u6673';
System.out.println(c);  // Output: 晳

JSON:

{"text": "\u6673"}  // Value: 晳

Python:

char = '\u6673'
print(char)  # Output: 晳

Perl:

my $char = "\x{6673}";
print $char;  # Output: 晳

PHP:

$char = "\x{6673}";
echo $char;  // Output: 晳

Ruby:

char = "\u{6673}"
puts char  # Output: 晳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006673";  /* Display: 晳 */
}

HTML Decimal:

<p>HTML decimal: &#26227;</p>  <!-- Display: 晳 -->

HTML Hexadecimal:

<p>HTML hex: &#x6673;</p>  <!-- Display: 晳 -->

URL Encoding:

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

Encodings

MD5:

6099ea4612a69b3ef34446968beb573d

SHA1:

3f1c4b49fde3a14216b4ab0aebe7a4b863b2bb7f

Base64:

5pmz