Unicode Finder

"搰" U+6430(CJK UNIFIED IDEOGRAPH-6430)

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

Programming

C
\u6430
JavaScript
\u6430
Java
\u6430
Json
\u6430
Python
\u6430
Perl
\x{6430}
PHP
\x{6430}
Ruby
\u{6430}
Rust
\u{6430}
Go
\u6430

Web

CSS
\006430
HtmlDecimal
搰
HtmlHexadecimal
搰
Url
%E6%90%B0

Code

MD5
f46c6dd6e51306ebf19200a6cacf487b
Sha1
f5cf759d19e3a1f24bca5be057f756bc47785ba8
Base64
5pCw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6430';
console.log(char);  // Output: 搰

Java:

char c = '\u6430';
System.out.println(c);  // Output: 搰

JSON:

{"text": "\u6430"}  // Value: 搰

Python:

char = '\u6430'
print(char)  # Output: 搰

Perl:

my $char = "\x{6430}";
print $char;  # Output: 搰

PHP:

$char = "\x{6430}";
echo $char;  // Output: 搰

Ruby:

char = "\u{6430}"
puts char  # Output: 搰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006430";  /* Display: 搰 */
}

HTML Decimal:

<p>HTML decimal: &#25648;</p>  <!-- Display: 搰 -->

HTML Hexadecimal:

<p>HTML hex: &#x6430;</p>  <!-- Display: 搰 -->

URL Encoding:

// 搰 URL encoding
https://unicodefinder.com/search.php?query=%E6%90%B0

Encodings

MD5:

f46c6dd6e51306ebf19200a6cacf487b

SHA1:

f5cf759d19e3a1f24bca5be057f756bc47785ba8

Base64:

5pCw