Unicode Finder

"脱" U+8131(CJK UNIFIED IDEOGRAPH-8131)

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

Programming

C
\u8131
JavaScript
\u8131
Java
\u8131
Json
\u8131
Python
\u8131
Perl
\x{8131}
PHP
\x{8131}
Ruby
\u{8131}
Rust
\u{8131}
Go
\u8131

Web

CSS
\008131
HtmlDecimal
脱
HtmlHexadecimal
脱
Url
%E8%84%B1

Code

MD5
ed57ee4e8ce208422c1d1d77810f45b5
Sha1
a7c46720451e2b1ac2360c6803095d88fd064f40
Base64
6ISx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8131';
console.log(char);  // Output: 脱

Java:

char c = '\u8131';
System.out.println(c);  // Output: 脱

JSON:

{"text": "\u8131"}  // Value: 脱

Python:

char = '\u8131'
print(char)  # Output: 脱

Perl:

my $char = "\x{8131}";
print $char;  # Output: 脱

PHP:

$char = "\x{8131}";
echo $char;  // Output: 脱

Ruby:

char = "\u{8131}"
puts char  # Output: 脱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008131";  /* Display: 脱 */
}

HTML Decimal:

<p>HTML decimal: &#33073;</p>  <!-- Display: 脱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8131;</p>  <!-- Display: 脱 -->

URL Encoding:

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

Encodings

MD5:

ed57ee4e8ce208422c1d1d77810f45b5

SHA1:

a7c46720451e2b1ac2360c6803095d88fd064f40

Base64:

6ISx