Unicode Finder

"扙" U+6259(CJK UNIFIED IDEOGRAPH-6259)

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

Programming

C
\u6259
JavaScript
\u6259
Java
\u6259
Json
\u6259
Python
\u6259
Perl
\x{6259}
PHP
\x{6259}
Ruby
\u{6259}
Rust
\u{6259}
Go
\u6259

Web

CSS
\006259
HtmlDecimal
扙
HtmlHexadecimal
扙
Url
%E6%89%99

Code

MD5
82ac5e6dda781a21fd8579027d576d48
Sha1
ac8ca740b9fd4905bef5ac79718513edb7254ab8
Base64
5omZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6259';
console.log(char);  // Output: 扙

Java:

char c = '\u6259';
System.out.println(c);  // Output: 扙

JSON:

{"text": "\u6259"}  // Value: 扙

Python:

char = '\u6259'
print(char)  # Output: 扙

Perl:

my $char = "\x{6259}";
print $char;  # Output: 扙

PHP:

$char = "\x{6259}";
echo $char;  // Output: 扙

Ruby:

char = "\u{6259}"
puts char  # Output: 扙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006259";  /* Display: 扙 */
}

HTML Decimal:

<p>HTML decimal: &#25177;</p>  <!-- Display: 扙 -->

HTML Hexadecimal:

<p>HTML hex: &#x6259;</p>  <!-- Display: 扙 -->

URL Encoding:

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

Encodings

MD5:

82ac5e6dda781a21fd8579027d576d48

SHA1:

ac8ca740b9fd4905bef5ac79718513edb7254ab8

Base64:

5omZ