Unicode Finder

"抯" U+62AF(CJK UNIFIED IDEOGRAPH-62AF)

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

Programming

C
\u62AF
JavaScript
\u62AF
Java
\u62AF
Json
\u62AF
Python
\u62AF
Perl
\x{62AF}
PHP
\x{62AF}
Ruby
\u{62AF}
Rust
\u{62AF}
Go
\u62AF

Web

CSS
\0062AF
HtmlDecimal
抯
HtmlHexadecimal
抯
Url
%E6%8A%AF

Code

MD5
bb8da1e97bcc9efb2f6adae2befaf8df
Sha1
031082f2fa29c83d11324af95aa27f6f94edc18f
Base64
5oqv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u62AF';
console.log(char);  // Output: 抯

Java:

char c = '\u62AF';
System.out.println(c);  // Output: 抯

JSON:

{"text": "\u62AF"}  // Value: 抯

Python:

char = '\u62AF'
print(char)  # Output: 抯

Perl:

my $char = "\x{62AF}";
print $char;  # Output: 抯

PHP:

$char = "\x{62AF}";
echo $char;  // Output: 抯

Ruby:

char = "\u{62AF}"
puts char  # Output: 抯

Rust:

let c = '\u{62AF}';
println!("{}", c);  // Output: 抯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0062AF";  /* Display: 抯 */
}

HTML Decimal:

<p>HTML decimal: &#25263;</p>  <!-- Display: 抯 -->

HTML Hexadecimal:

<p>HTML hex: &#x62AF;</p>  <!-- Display: 抯 -->

URL Encoding:

// 抯 URL encoding
https://unicodefinder.com/search.php?query=%E6%8A%AF

Encodings

MD5:

bb8da1e97bcc9efb2f6adae2befaf8df

SHA1:

031082f2fa29c83d11324af95aa27f6f94edc18f

Base64:

5oqv