Unicode Finder

"扈" U+6248(CJK UNIFIED IDEOGRAPH-6248)

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

Programming

C
\u6248
JavaScript
\u6248
Java
\u6248
Json
\u6248
Python
\u6248
Perl
\x{6248}
PHP
\x{6248}
Ruby
\u{6248}
Rust
\u{6248}
Go
\u6248

Web

CSS
\006248
HtmlDecimal
扈
HtmlHexadecimal
扈
Url
%E6%89%88

Code

MD5
3c3508713e64934eac73209d4c4b0c02
Sha1
155b1cff3a96870895221c586dac075e61e2ded1
Base64
5omI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6248';
console.log(char);  // Output: 扈

Java:

char c = '\u6248';
System.out.println(c);  // Output: 扈

JSON:

{"text": "\u6248"}  // Value: 扈

Python:

char = '\u6248'
print(char)  # Output: 扈

Perl:

my $char = "\x{6248}";
print $char;  # Output: 扈

PHP:

$char = "\x{6248}";
echo $char;  // Output: 扈

Ruby:

char = "\u{6248}"
puts char  # Output: 扈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006248";  /* Display: 扈 */
}

HTML Decimal:

<p>HTML decimal: &#25160;</p>  <!-- Display: 扈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6248;</p>  <!-- Display: 扈 -->

URL Encoding:

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

Encodings

MD5:

3c3508713e64934eac73209d4c4b0c02

SHA1:

155b1cff3a96870895221c586dac075e61e2ded1

Base64:

5omI