Unicode Finder

"晹" U+6679(CJK UNIFIED IDEOGRAPH-6679)

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

Programming

C
\u6679
JavaScript
\u6679
Java
\u6679
Json
\u6679
Python
\u6679
Perl
\x{6679}
PHP
\x{6679}
Ruby
\u{6679}
Rust
\u{6679}
Go
\u6679

Web

CSS
\006679
HtmlDecimal
晹
HtmlHexadecimal
晹
Url
%E6%99%B9

Code

MD5
e95ff4857f7d900243d4ce11f45451dd
Sha1
f9b8031b0e980316161773a29bbc55d35d8249bc
Base64
5pm5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6679';
console.log(char);  // Output: 晹

Java:

char c = '\u6679';
System.out.println(c);  // Output: 晹

JSON:

{"text": "\u6679"}  // Value: 晹

Python:

char = '\u6679'
print(char)  # Output: 晹

Perl:

my $char = "\x{6679}";
print $char;  # Output: 晹

PHP:

$char = "\x{6679}";
echo $char;  // Output: 晹

Ruby:

char = "\u{6679}"
puts char  # Output: 晹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006679";  /* Display: 晹 */
}

HTML Decimal:

<p>HTML decimal: &#26233;</p>  <!-- Display: 晹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6679;</p>  <!-- Display: 晹 -->

URL Encoding:

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

Encodings

MD5:

e95ff4857f7d900243d4ce11f45451dd

SHA1:

f9b8031b0e980316161773a29bbc55d35d8249bc

Base64:

5pm5