Unicode Finder

"胸" U+80F8(CJK UNIFIED IDEOGRAPH-80F8)

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

Programming

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

Web

CSS
\0080F8
HtmlDecimal
胸
HtmlHexadecimal
胸
Url
%E8%83%B8

Code

MD5
88ed7a21ee63f34f62431294dde07233
Sha1
a6577e51aa0327fd08b7e745bb4265616046aebc
Base64
6IO4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u80F8';
console.log(char);  // Output: 胸

Java:

char c = '\u80F8';
System.out.println(c);  // Output: 胸

JSON:

{"text": "\u80F8"}  // Value: 胸

Python:

char = '\u80F8'
print(char)  # Output: 胸

Perl:

my $char = "\x{80F8}";
print $char;  # Output: 胸

PHP:

$char = "\x{80F8}";
echo $char;  // Output: 胸

Ruby:

char = "\u{80F8}"
puts char  # Output: 胸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33016;</p>  <!-- Display: 胸 -->

HTML Hexadecimal:

<p>HTML hex: &#x80F8;</p>  <!-- Display: 胸 -->

URL Encoding:

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

Encodings

MD5:

88ed7a21ee63f34f62431294dde07233

SHA1:

a6577e51aa0327fd08b7e745bb4265616046aebc

Base64:

6IO4