Unicode Finder

"腏" U+814F(CJK UNIFIED IDEOGRAPH-814F)

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

Programming

C
\u814F
JavaScript
\u814F
Java
\u814F
Json
\u814F
Python
\u814F
Perl
\x{814F}
PHP
\x{814F}
Ruby
\u{814F}
Rust
\u{814F}
Go
\u814F

Web

CSS
\00814F
HtmlDecimal
腏
HtmlHexadecimal
腏
Url
%E8%85%8F

Code

MD5
9183f8d57a87033ff9c55cfbf9bef01a
Sha1
1f37e1b7bec0990416e85ea9621948f0ca4bfdf5
Base64
6IWP

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u814F';
console.log(char);  // Output: 腏

Java:

char c = '\u814F';
System.out.println(c);  // Output: 腏

JSON:

{"text": "\u814F"}  // Value: 腏

Python:

char = '\u814F'
print(char)  # Output: 腏

Perl:

my $char = "\x{814F}";
print $char;  # Output: 腏

PHP:

$char = "\x{814F}";
echo $char;  // Output: 腏

Ruby:

char = "\u{814F}"
puts char  # Output: 腏

Rust:

let c = '\u{814F}';
println!("{}", c);  // Output: 腏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00814F";  /* Display: 腏 */
}

HTML Decimal:

<p>HTML decimal: &#33103;</p>  <!-- Display: 腏 -->

HTML Hexadecimal:

<p>HTML hex: &#x814F;</p>  <!-- Display: 腏 -->

URL Encoding:

// 腏 URL encoding
https://unicodefinder.com/search.php?query=%E8%85%8F

Encodings

MD5:

9183f8d57a87033ff9c55cfbf9bef01a

SHA1:

1f37e1b7bec0990416e85ea9621948f0ca4bfdf5

Base64:

6IWP