Unicode Finder

"晼" U+667C(CJK UNIFIED IDEOGRAPH-667C)

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

Programming

C
\u667C
JavaScript
\u667C
Java
\u667C
Json
\u667C
Python
\u667C
Perl
\x{667C}
PHP
\x{667C}
Ruby
\u{667C}
Rust
\u{667C}
Go
\u667C

Web

CSS
\00667C
HtmlDecimal
晼
HtmlHexadecimal
晼
Url
%E6%99%BC

Code

MD5
5a5624236b37f1045303358a36d3b03c
Sha1
03a3e5db4751f1307056212f91b6c7ad2bb889be
Base64
5pm8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u667C';
console.log(char);  // Output: 晼

Java:

char c = '\u667C';
System.out.println(c);  // Output: 晼

JSON:

{"text": "\u667C"}  // Value: 晼

Python:

char = '\u667C'
print(char)  # Output: 晼

Perl:

my $char = "\x{667C}";
print $char;  # Output: 晼

PHP:

$char = "\x{667C}";
echo $char;  // Output: 晼

Ruby:

char = "\u{667C}"
puts char  # Output: 晼

Rust:

let c = '\u{667C}';
println!("{}", c);  // Output: 晼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00667C";  /* Display: 晼 */
}

HTML Decimal:

<p>HTML decimal: &#26236;</p>  <!-- Display: 晼 -->

HTML Hexadecimal:

<p>HTML hex: &#x667C;</p>  <!-- Display: 晼 -->

URL Encoding:

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

Encodings

MD5:

5a5624236b37f1045303358a36d3b03c

SHA1:

03a3e5db4751f1307056212f91b6c7ad2bb889be

Base64:

5pm8