Unicode Finder

"晲" U+6672(CJK UNIFIED IDEOGRAPH-6672)

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

Programming

C
\u6672
JavaScript
\u6672
Java
\u6672
Json
\u6672
Python
\u6672
Perl
\x{6672}
PHP
\x{6672}
Ruby
\u{6672}
Rust
\u{6672}
Go
\u6672

Web

CSS
\006672
HtmlDecimal
晲
HtmlHexadecimal
晲
Url
%E6%99%B2

Code

MD5
431261327d4440d07a6f523a273c5a1e
Sha1
b324f2c67bcb5ea7b71ec03cb984422a65c26fcd
Base64
5pmy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6672';
console.log(char);  // Output: 晲

Java:

char c = '\u6672';
System.out.println(c);  // Output: 晲

JSON:

{"text": "\u6672"}  // Value: 晲

Python:

char = '\u6672'
print(char)  # Output: 晲

Perl:

my $char = "\x{6672}";
print $char;  # Output: 晲

PHP:

$char = "\x{6672}";
echo $char;  // Output: 晲

Ruby:

char = "\u{6672}"
puts char  # Output: 晲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006672";  /* Display: 晲 */
}

HTML Decimal:

<p>HTML decimal: &#26226;</p>  <!-- Display: 晲 -->

HTML Hexadecimal:

<p>HTML hex: &#x6672;</p>  <!-- Display: 晲 -->

URL Encoding:

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

Encodings

MD5:

431261327d4440d07a6f523a273c5a1e

SHA1:

b324f2c67bcb5ea7b71ec03cb984422a65c26fcd

Base64:

5pmy