Unicode Finder

"曱" U+66F1(CJK UNIFIED IDEOGRAPH-66F1)

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

Programming

C
\u66F1
JavaScript
\u66F1
Java
\u66F1
Json
\u66F1
Python
\u66F1
Perl
\x{66F1}
PHP
\x{66F1}
Ruby
\u{66F1}
Rust
\u{66F1}
Go
\u66F1

Web

CSS
\0066F1
HtmlDecimal
曱
HtmlHexadecimal
曱
Url
%E6%9B%B1

Code

MD5
2ef956e33ea971345772f61e6433a900
Sha1
56bef537c78179a2cc705175460f2a0531ef49ed
Base64
5pux

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u66F1';
console.log(char);  // Output: 曱

Java:

char c = '\u66F1';
System.out.println(c);  // Output: 曱

JSON:

{"text": "\u66F1"}  // Value: 曱

Python:

char = '\u66F1'
print(char)  # Output: 曱

Perl:

my $char = "\x{66F1}";
print $char;  # Output: 曱

PHP:

$char = "\x{66F1}";
echo $char;  // Output: 曱

Ruby:

char = "\u{66F1}"
puts char  # Output: 曱

Rust:

let c = '\u{66F1}';
println!("{}", c);  // Output: 曱

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0066F1";  /* Display: 曱 */
}

HTML Decimal:

<p>HTML decimal: &#26353;</p>  <!-- Display: 曱 -->

HTML Hexadecimal:

<p>HTML hex: &#x66F1;</p>  <!-- Display: 曱 -->

URL Encoding:

// 曱 URL encoding
https://unicodefinder.com/search.php?query=%E6%9B%B1

Encodings

MD5:

2ef956e33ea971345772f61e6433a900

SHA1:

56bef537c78179a2cc705175460f2a0531ef49ed

Base64:

5pux