Unicode Finder

"胷" U+80F7(CJK UNIFIED IDEOGRAPH-80F7)

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

Programming

C
\u80F7
JavaScript
\u80F7
Java
\u80F7
Json
\u80F7
Python
\u80F7
Perl
\x{80F7}
PHP
\x{80F7}
Ruby
\u{80F7}
Rust
\u{80F7}
Go
\u80F7

Web

CSS
\0080F7
HtmlDecimal
胷
HtmlHexadecimal
胷
Url
%E8%83%B7

Code

MD5
4a0a43bf965c48cb271059974108314a
Sha1
cb3986772c07139def0bd1a698fc56cd254713cc
Base64
6IO3

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u80F7';
console.log(char);  // Output: 胷

Java:

char c = '\u80F7';
System.out.println(c);  // Output: 胷

JSON:

{"text": "\u80F7"}  // Value: 胷

Python:

char = '\u80F7'
print(char)  # Output: 胷

Perl:

my $char = "\x{80F7}";
print $char;  # Output: 胷

PHP:

$char = "\x{80F7}";
echo $char;  // Output: 胷

Ruby:

char = "\u{80F7}"
puts char  # Output: 胷

Rust:

let c = '\u{80F7}';
println!("{}", c);  // Output: 胷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0080F7";  /* Display: 胷 */
}

HTML Decimal:

<p>HTML decimal: &#33015;</p>  <!-- Display: 胷 -->

HTML Hexadecimal:

<p>HTML hex: &#x80F7;</p>  <!-- Display: 胷 -->

URL Encoding:

// 胷 URL encoding
https://unicodefinder.com/search.php?query=%E8%83%B7

Encodings

MD5:

4a0a43bf965c48cb271059974108314a

SHA1:

cb3986772c07139def0bd1a698fc56cd254713cc

Base64:

6IO3