Unicode Finder

"暁" U+6681(CJK UNIFIED IDEOGRAPH-6681)

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

Programming

C
\u6681
JavaScript
\u6681
Java
\u6681
Json
\u6681
Python
\u6681
Perl
\x{6681}
PHP
\x{6681}
Ruby
\u{6681}
Rust
\u{6681}
Go
\u6681

Web

CSS
\006681
HtmlDecimal
暁
HtmlHexadecimal
暁
Url
%E6%9A%81

Code

MD5
69c1f870c2bb9ac4a87719613ef41147
Sha1
ea26b4a1ff923636b675cf1df21770379cb9a69b
Base64
5pqB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6681';
console.log(char);  // Output: 暁

Java:

char c = '\u6681';
System.out.println(c);  // Output: 暁

JSON:

{"text": "\u6681"}  // Value: 暁

Python:

char = '\u6681'
print(char)  # Output: 暁

Perl:

my $char = "\x{6681}";
print $char;  # Output: 暁

PHP:

$char = "\x{6681}";
echo $char;  // Output: 暁

Ruby:

char = "\u{6681}"
puts char  # Output: 暁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006681";  /* Display: 暁 */
}

HTML Decimal:

<p>HTML decimal: &#26241;</p>  <!-- Display: 暁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6681;</p>  <!-- Display: 暁 -->

URL Encoding:

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

Encodings

MD5:

69c1f870c2bb9ac4a87719613ef41147

SHA1:

ea26b4a1ff923636b675cf1df21770379cb9a69b

Base64:

5pqB