Unicode Finder

"腒" U+8152(CJK UNIFIED IDEOGRAPH-8152)

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

Programming

C
\u8152
JavaScript
\u8152
Java
\u8152
Json
\u8152
Python
\u8152
Perl
\x{8152}
PHP
\x{8152}
Ruby
\u{8152}
Rust
\u{8152}
Go
\u8152

Web

CSS
\008152
HtmlDecimal
腒
HtmlHexadecimal
腒
Url
%E8%85%92

Code

MD5
1739545d0bcb1acf9b70946331429998
Sha1
cbd1a5cf016fb9593bc037f90be79b514d431202
Base64
6IWS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8152';
console.log(char);  // Output: 腒

Java:

char c = '\u8152';
System.out.println(c);  // Output: 腒

JSON:

{"text": "\u8152"}  // Value: 腒

Python:

char = '\u8152'
print(char)  # Output: 腒

Perl:

my $char = "\x{8152}";
print $char;  # Output: 腒

PHP:

$char = "\x{8152}";
echo $char;  // Output: 腒

Ruby:

char = "\u{8152}"
puts char  # Output: 腒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008152";  /* Display: 腒 */
}

HTML Decimal:

<p>HTML decimal: &#33106;</p>  <!-- Display: 腒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8152;</p>  <!-- Display: 腒 -->

URL Encoding:

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

Encodings

MD5:

1739545d0bcb1acf9b70946331429998

SHA1:

cbd1a5cf016fb9593bc037f90be79b514d431202

Base64:

6IWS