Unicode Finder

"脸" U+8138(CJK UNIFIED IDEOGRAPH-8138)

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

Programming

C
\u8138
JavaScript
\u8138
Java
\u8138
Json
\u8138
Python
\u8138
Perl
\x{8138}
PHP
\x{8138}
Ruby
\u{8138}
Rust
\u{8138}
Go
\u8138

Web

CSS
\008138
HtmlDecimal
脸
HtmlHexadecimal
脸
Url
%E8%84%B8

Code

MD5
390eddf63a285ee2400d5a5eba5d2a67
Sha1
925cf693697f60df170f66ddda8a291cabdba694
Base64
6IS4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8138';
console.log(char);  // Output: 脸

Java:

char c = '\u8138';
System.out.println(c);  // Output: 脸

JSON:

{"text": "\u8138"}  // Value: 脸

Python:

char = '\u8138'
print(char)  # Output: 脸

Perl:

my $char = "\x{8138}";
print $char;  # Output: 脸

PHP:

$char = "\x{8138}";
echo $char;  // Output: 脸

Ruby:

char = "\u{8138}"
puts char  # Output: 脸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008138";  /* Display: 脸 */
}

HTML Decimal:

<p>HTML decimal: &#33080;</p>  <!-- Display: 脸 -->

HTML Hexadecimal:

<p>HTML hex: &#x8138;</p>  <!-- Display: 脸 -->

URL Encoding:

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

Encodings

MD5:

390eddf63a285ee2400d5a5eba5d2a67

SHA1:

925cf693697f60df170f66ddda8a291cabdba694

Base64:

6IS4