Unicode Finder

"腐" U+8150(CJK UNIFIED IDEOGRAPH-8150)

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

Programming

C
\u8150
JavaScript
\u8150
Java
\u8150
Json
\u8150
Python
\u8150
Perl
\x{8150}
PHP
\x{8150}
Ruby
\u{8150}
Rust
\u{8150}
Go
\u8150

Web

CSS
\008150
HtmlDecimal
腐
HtmlHexadecimal
腐
Url
%E8%85%90

Code

MD5
48a4141d9c7e96a5f2aafb4c4ea6bc26
Sha1
f780162fb530041883dcb6eac851fce609ae7bd7
Base64
6IWQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8150';
console.log(char);  // Output: 腐

Java:

char c = '\u8150';
System.out.println(c);  // Output: 腐

JSON:

{"text": "\u8150"}  // Value: 腐

Python:

char = '\u8150'
print(char)  # Output: 腐

Perl:

my $char = "\x{8150}";
print $char;  # Output: 腐

PHP:

$char = "\x{8150}";
echo $char;  // Output: 腐

Ruby:

char = "\u{8150}"
puts char  # Output: 腐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008150";  /* Display: 腐 */
}

HTML Decimal:

<p>HTML decimal: &#33104;</p>  <!-- Display: 腐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8150;</p>  <!-- Display: 腐 -->

URL Encoding:

// 腐 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%90

Encodings

MD5:

48a4141d9c7e96a5f2aafb4c4ea6bc26

SHA1:

f780162fb530041883dcb6eac851fce609ae7bd7

Base64:

6IWQ