Unicode Finder

"脳" U+8133(CJK UNIFIED IDEOGRAPH-8133)

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

Programming

C
\u8133
JavaScript
\u8133
Java
\u8133
Json
\u8133
Python
\u8133
Perl
\x{8133}
PHP
\x{8133}
Ruby
\u{8133}
Rust
\u{8133}
Go
\u8133

Web

CSS
\008133
HtmlDecimal
脳
HtmlHexadecimal
脳
Url
%E8%84%B3

Code

MD5
7e8bb411c8e3a497bfe6ef47daf9becc
Sha1
bb2590464060e671ebdd319147fdd9721f095050
Base64
6ISz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8133';
console.log(char);  // Output: 脳

Java:

char c = '\u8133';
System.out.println(c);  // Output: 脳

JSON:

{"text": "\u8133"}  // Value: 脳

Python:

char = '\u8133'
print(char)  # Output: 脳

Perl:

my $char = "\x{8133}";
print $char;  # Output: 脳

PHP:

$char = "\x{8133}";
echo $char;  // Output: 脳

Ruby:

char = "\u{8133}"
puts char  # Output: 脳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008133";  /* Display: 脳 */
}

HTML Decimal:

<p>HTML decimal: &#33075;</p>  <!-- Display: 脳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8133;</p>  <!-- Display: 脳 -->

URL Encoding:

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

Encodings

MD5:

7e8bb411c8e3a497bfe6ef47daf9becc

SHA1:

bb2590464060e671ebdd319147fdd9721f095050

Base64:

6ISz