Unicode Finder

"脓" U+8113(CJK UNIFIED IDEOGRAPH-8113)

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

Programming

C
\u8113
JavaScript
\u8113
Java
\u8113
Json
\u8113
Python
\u8113
Perl
\x{8113}
PHP
\x{8113}
Ruby
\u{8113}
Rust
\u{8113}
Go
\u8113

Web

CSS
\008113
HtmlDecimal
脓
HtmlHexadecimal
脓
Url
%E8%84%93

Code

MD5
4b33ab73715c78f6b7a42c3d3468e633
Sha1
6c301003c5eeeb177f2a033f6031ec593db03b2e
Base64
6IST

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8113';
console.log(char);  // Output: 脓

Java:

char c = '\u8113';
System.out.println(c);  // Output: 脓

JSON:

{"text": "\u8113"}  // Value: 脓

Python:

char = '\u8113'
print(char)  # Output: 脓

Perl:

my $char = "\x{8113}";
print $char;  # Output: 脓

PHP:

$char = "\x{8113}";
echo $char;  // Output: 脓

Ruby:

char = "\u{8113}"
puts char  # Output: 脓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008113";  /* Display: 脓 */
}

HTML Decimal:

<p>HTML decimal: &#33043;</p>  <!-- Display: 脓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8113;</p>  <!-- Display: 脓 -->

URL Encoding:

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

Encodings

MD5:

4b33ab73715c78f6b7a42c3d3468e633

SHA1:

6c301003c5eeeb177f2a033f6031ec593db03b2e

Base64:

6IST