Unicode Finder

"摉" U+6449(CJK UNIFIED IDEOGRAPH-6449)

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

Programming

C
\u6449
JavaScript
\u6449
Java
\u6449
Json
\u6449
Python
\u6449
Perl
\x{6449}
PHP
\x{6449}
Ruby
\u{6449}
Rust
\u{6449}
Go
\u6449

Web

CSS
\006449
HtmlDecimal
摉
HtmlHexadecimal
摉
Url
%E6%91%89

Code

MD5
fcdc7a4bdea853cf15b49efc0442c8af
Sha1
b8cd0ebebe5bb4225c790c7481523a86d6bac3f9
Base64
5pGJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6449';
console.log(char);  // Output: 摉

Java:

char c = '\u6449';
System.out.println(c);  // Output: 摉

JSON:

{"text": "\u6449"}  // Value: 摉

Python:

char = '\u6449'
print(char)  # Output: 摉

Perl:

my $char = "\x{6449}";
print $char;  # Output: 摉

PHP:

$char = "\x{6449}";
echo $char;  // Output: 摉

Ruby:

char = "\u{6449}"
puts char  # Output: 摉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006449";  /* Display: 摉 */
}

HTML Decimal:

<p>HTML decimal: &#25673;</p>  <!-- Display: 摉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6449;</p>  <!-- Display: 摉 -->

URL Encoding:

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

Encodings

MD5:

fcdc7a4bdea853cf15b49efc0442c8af

SHA1:

b8cd0ebebe5bb4225c790c7481523a86d6bac3f9

Base64:

5pGJ