Unicode Finder

"聰" U+8070(CJK UNIFIED IDEOGRAPH-8070)

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

Programming

C
\u8070
JavaScript
\u8070
Java
\u8070
Json
\u8070
Python
\u8070
Perl
\x{8070}
PHP
\x{8070}
Ruby
\u{8070}
Rust
\u{8070}
Go
\u8070

Web

CSS
\008070
HtmlDecimal
聰
HtmlHexadecimal
聰
Url
%E8%81%B0

Code

MD5
5bbe18bb2c94598dd5d9053291cdd9ae
Sha1
32c9744c239a071a476836c5f5eab246b37e3859
Base64
6IGw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8070';
console.log(char);  // Output: 聰

Java:

char c = '\u8070';
System.out.println(c);  // Output: 聰

JSON:

{"text": "\u8070"}  // Value: 聰

Python:

char = '\u8070'
print(char)  # Output: 聰

Perl:

my $char = "\x{8070}";
print $char;  # Output: 聰

PHP:

$char = "\x{8070}";
echo $char;  // Output: 聰

Ruby:

char = "\u{8070}"
puts char  # Output: 聰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008070";  /* Display: 聰 */
}

HTML Decimal:

<p>HTML decimal: &#32880;</p>  <!-- Display: 聰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8070;</p>  <!-- Display: 聰 -->

URL Encoding:

// 聰 URL encoding
https://unicodefinder.com/search.php?query=%E8%81%B0

Encodings

MD5:

5bbe18bb2c94598dd5d9053291cdd9ae

SHA1:

32c9744c239a071a476836c5f5eab246b37e3859

Base64:

6IGw