Unicode Finder

"摩" U+6469(CJK UNIFIED IDEOGRAPH-6469)

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

Programming

C
\u6469
JavaScript
\u6469
Java
\u6469
Json
\u6469
Python
\u6469
Perl
\x{6469}
PHP
\x{6469}
Ruby
\u{6469}
Rust
\u{6469}
Go
\u6469

Web

CSS
\006469
HtmlDecimal
摩
HtmlHexadecimal
摩
Url
%E6%91%A9

Code

MD5
ff4a8555886b5750ca6788da4638437e
Sha1
2d5eaba3ba19e3e1b7b11f45c7aeee6637736e40
Base64
5pGp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6469';
console.log(char);  // Output: 摩

Java:

char c = '\u6469';
System.out.println(c);  // Output: 摩

JSON:

{"text": "\u6469"}  // Value: 摩

Python:

char = '\u6469'
print(char)  # Output: 摩

Perl:

my $char = "\x{6469}";
print $char;  # Output: 摩

PHP:

$char = "\x{6469}";
echo $char;  // Output: 摩

Ruby:

char = "\u{6469}"
puts char  # Output: 摩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006469";  /* Display: 摩 */
}

HTML Decimal:

<p>HTML decimal: &#25705;</p>  <!-- Display: 摩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6469;</p>  <!-- Display: 摩 -->

URL Encoding:

// 摩 URL encoding
https://unicodefinder.com/search.php?query=%E6%91%A9

Encodings

MD5:

ff4a8555886b5750ca6788da4638437e

SHA1:

2d5eaba3ba19e3e1b7b11f45c7aeee6637736e40

Base64:

5pGp