Unicode Finder

"脿" U+813F(CJK UNIFIED IDEOGRAPH-813F)

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

Programming

C
\u813F
JavaScript
\u813F
Java
\u813F
Json
\u813F
Python
\u813F
Perl
\x{813F}
PHP
\x{813F}
Ruby
\u{813F}
Rust
\u{813F}
Go
\u813F

Web

CSS
\00813F
HtmlDecimal
脿
HtmlHexadecimal
脿
Url
%E8%84%BF

Code

MD5
ef0305f473c9523bd37be274284fc84f
Sha1
7c2806c344a0cfd942c9b201bfe383bd2cf0f5af
Base64
6IS/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u813F';
console.log(char);  // Output: 脿

Java:

char c = '\u813F';
System.out.println(c);  // Output: 脿

JSON:

{"text": "\u813F"}  // Value: 脿

Python:

char = '\u813F'
print(char)  # Output: 脿

Perl:

my $char = "\x{813F}";
print $char;  # Output: 脿

PHP:

$char = "\x{813F}";
echo $char;  // Output: 脿

Ruby:

char = "\u{813F}"
puts char  # Output: 脿

Rust:

let c = '\u{813F}';
println!("{}", c);  // Output: 脿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00813F";  /* Display: 脿 */
}

HTML Decimal:

<p>HTML decimal: &#33087;</p>  <!-- Display: 脿 -->

HTML Hexadecimal:

<p>HTML hex: &#x813F;</p>  <!-- Display: 脿 -->

URL Encoding:

// 脿 URL encoding
https://unicodefinder.com/search.php?query=%E8%84%BF

Encodings

MD5:

ef0305f473c9523bd37be274284fc84f

SHA1:

7c2806c344a0cfd942c9b201bfe383bd2cf0f5af

Base64:

6IS/