Unicode Finder

"點" U+9EDE(CJK UNIFIED IDEOGRAPH-9EDE)

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

Programming

C
\u9EDE
JavaScript
\u9EDE
Java
\u9EDE
Json
\u9EDE
Python
\u9EDE
Perl
\x{9EDE}
PHP
\x{9EDE}
Ruby
\u{9EDE}
Rust
\u{9EDE}
Go
\u9EDE

Web

CSS
\009EDE
HtmlDecimal
點
HtmlHexadecimal
點
Url
%E9%BB%9E

Code

MD5
a284714e358959de9e34854251032fae
Sha1
1c95f8b4ea326413930105f193556b048f167731
Base64
6bue

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9EDE';
console.log(char);  // Output: 點

Java:

char c = '\u9EDE';
System.out.println(c);  // Output: 點

JSON:

{"text": "\u9EDE"}  // Value: 點

Python:

char = '\u9EDE'
print(char)  # Output: 點

Perl:

my $char = "\x{9EDE}";
print $char;  # Output: 點

PHP:

$char = "\x{9EDE}";
echo $char;  // Output: 點

Ruby:

char = "\u{9EDE}"
puts char  # Output: 點

Rust:

let c = '\u{9EDE}';
println!("{}", c);  // Output: 點

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009EDE";  /* Display: 點 */
}

HTML Decimal:

<p>HTML decimal: &#40670;</p>  <!-- Display: 點 -->

HTML Hexadecimal:

<p>HTML hex: &#x9EDE;</p>  <!-- Display: 點 -->

URL Encoding:

// 點 URL encoding
https://unicodefinder.com/search.php?query=%E9%BB%9E

Encodings

MD5:

a284714e358959de9e34854251032fae

SHA1:

1c95f8b4ea326413930105f193556b048f167731

Base64:

6bue