Unicode Finder

"腈" U+8148(CJK UNIFIED IDEOGRAPH-8148)

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

Programming

C
\u8148
JavaScript
\u8148
Java
\u8148
Json
\u8148
Python
\u8148
Perl
\x{8148}
PHP
\x{8148}
Ruby
\u{8148}
Rust
\u{8148}
Go
\u8148

Web

CSS
\008148
HtmlDecimal
腈
HtmlHexadecimal
腈
Url
%E8%85%88

Code

MD5
0b79eced6557a2df8c669b99b03aaec6
Sha1
b46d146361d7dd25242548ff859402399b4abdf0
Base64
6IWI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8148';
console.log(char);  // Output: 腈

Java:

char c = '\u8148';
System.out.println(c);  // Output: 腈

JSON:

{"text": "\u8148"}  // Value: 腈

Python:

char = '\u8148'
print(char)  # Output: 腈

Perl:

my $char = "\x{8148}";
print $char;  # Output: 腈

PHP:

$char = "\x{8148}";
echo $char;  // Output: 腈

Ruby:

char = "\u{8148}"
puts char  # Output: 腈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008148";  /* Display: 腈 */
}

HTML Decimal:

<p>HTML decimal: &#33096;</p>  <!-- Display: 腈 -->

HTML Hexadecimal:

<p>HTML hex: &#x8148;</p>  <!-- Display: 腈 -->

URL Encoding:

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

Encodings

MD5:

0b79eced6557a2df8c669b99b03aaec6

SHA1:

b46d146361d7dd25242548ff859402399b4abdf0

Base64:

6IWI