Unicode Finder

"暘" U+6698(CJK UNIFIED IDEOGRAPH-6698)

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

Programming

C
\u6698
JavaScript
\u6698
Java
\u6698
Json
\u6698
Python
\u6698
Perl
\x{6698}
PHP
\x{6698}
Ruby
\u{6698}
Rust
\u{6698}
Go
\u6698

Web

CSS
\006698
HtmlDecimal
暘
HtmlHexadecimal
暘
Url
%E6%9A%98

Code

MD5
f8fdc364cc0c34b468758e93d9a9b1a3
Sha1
f11c564ef13d11b0c9b251c5a7444f66722fe332
Base64
5pqY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6698';
console.log(char);  // Output: 暘

Java:

char c = '\u6698';
System.out.println(c);  // Output: 暘

JSON:

{"text": "\u6698"}  // Value: 暘

Python:

char = '\u6698'
print(char)  # Output: 暘

Perl:

my $char = "\x{6698}";
print $char;  # Output: 暘

PHP:

$char = "\x{6698}";
echo $char;  // Output: 暘

Ruby:

char = "\u{6698}"
puts char  # Output: 暘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006698";  /* Display: 暘 */
}

HTML Decimal:

<p>HTML decimal: &#26264;</p>  <!-- Display: 暘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6698;</p>  <!-- Display: 暘 -->

URL Encoding:

// 暘 URL encoding
https://unicodefinder.com/search.php?query=%E6%9A%98

Encodings

MD5:

f8fdc364cc0c34b468758e93d9a9b1a3

SHA1:

f11c564ef13d11b0c9b251c5a7444f66722fe332

Base64:

5pqY