Unicode Finder

"梄" U+6884(CJK UNIFIED IDEOGRAPH-6884)

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

Programming

C
\u6884
JavaScript
\u6884
Java
\u6884
Json
\u6884
Python
\u6884
Perl
\x{6884}
PHP
\x{6884}
Ruby
\u{6884}
Rust
\u{6884}
Go
\u6884

Web

CSS
\006884
HtmlDecimal
梄
HtmlHexadecimal
梄
Url
%E6%A2%84

Code

MD5
3cc1ce503e5cd8e062212d5b20065158
Sha1
38c9d1678d9c38822c1373d1a4eb0def21db206a
Base64
5qKE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6884';
console.log(char);  // Output: 梄

Java:

char c = '\u6884';
System.out.println(c);  // Output: 梄

JSON:

{"text": "\u6884"}  // Value: 梄

Python:

char = '\u6884'
print(char)  # Output: 梄

Perl:

my $char = "\x{6884}";
print $char;  # Output: 梄

PHP:

$char = "\x{6884}";
echo $char;  // Output: 梄

Ruby:

char = "\u{6884}"
puts char  # Output: 梄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006884";  /* Display: 梄 */
}

HTML Decimal:

<p>HTML decimal: &#26756;</p>  <!-- Display: 梄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6884;</p>  <!-- Display: 梄 -->

URL Encoding:

// 梄 URL encoding
https://unicodefinder.com/search.php?query=%E6%A2%84

Encodings

MD5:

3cc1ce503e5cd8e062212d5b20065158

SHA1:

38c9d1678d9c38822c1373d1a4eb0def21db206a

Base64:

5qKE