Unicode Finder

"腔" U+8154(CJK UNIFIED IDEOGRAPH-8154)

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

Programming

C
\u8154
JavaScript
\u8154
Java
\u8154
Json
\u8154
Python
\u8154
Perl
\x{8154}
PHP
\x{8154}
Ruby
\u{8154}
Rust
\u{8154}
Go
\u8154

Web

CSS
\008154
HtmlDecimal
腔
HtmlHexadecimal
腔
Url
%E8%85%94

Code

MD5
4535dec4e1ba4f44523467c02201cfdb
Sha1
e6c559fc3266f2f9259819f1d8327d51d42ea023
Base64
6IWU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8154';
console.log(char);  // Output: 腔

Java:

char c = '\u8154';
System.out.println(c);  // Output: 腔

JSON:

{"text": "\u8154"}  // Value: 腔

Python:

char = '\u8154'
print(char)  # Output: 腔

Perl:

my $char = "\x{8154}";
print $char;  # Output: 腔

PHP:

$char = "\x{8154}";
echo $char;  // Output: 腔

Ruby:

char = "\u{8154}"
puts char  # Output: 腔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008154";  /* Display: 腔 */
}

HTML Decimal:

<p>HTML decimal: &#33108;</p>  <!-- Display: 腔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8154;</p>  <!-- Display: 腔 -->

URL Encoding:

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

Encodings

MD5:

4535dec4e1ba4f44523467c02201cfdb

SHA1:

e6c559fc3266f2f9259819f1d8327d51d42ea023

Base64:

6IWU