Unicode Finder

"晵" U+6675(CJK UNIFIED IDEOGRAPH-6675)

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

Programming

C
\u6675
JavaScript
\u6675
Java
\u6675
Json
\u6675
Python
\u6675
Perl
\x{6675}
PHP
\x{6675}
Ruby
\u{6675}
Rust
\u{6675}
Go
\u6675

Web

CSS
\006675
HtmlDecimal
晵
HtmlHexadecimal
晵
Url
%E6%99%B5

Code

MD5
ec6ae64461f63ffa89905d595a42ed11
Sha1
786065804c56d7c21228bf11e4f0caf7e7eb71af
Base64
5pm1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6675';
console.log(char);  // Output: 晵

Java:

char c = '\u6675';
System.out.println(c);  // Output: 晵

JSON:

{"text": "\u6675"}  // Value: 晵

Python:

char = '\u6675'
print(char)  # Output: 晵

Perl:

my $char = "\x{6675}";
print $char;  # Output: 晵

PHP:

$char = "\x{6675}";
echo $char;  // Output: 晵

Ruby:

char = "\u{6675}"
puts char  # Output: 晵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006675";  /* Display: 晵 */
}

HTML Decimal:

<p>HTML decimal: &#26229;</p>  <!-- Display: 晵 -->

HTML Hexadecimal:

<p>HTML hex: &#x6675;</p>  <!-- Display: 晵 -->

URL Encoding:

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

Encodings

MD5:

ec6ae64461f63ffa89905d595a42ed11

SHA1:

786065804c56d7c21228bf11e4f0caf7e7eb71af

Base64:

5pm1