Unicode Finder

"聧" U+8067(CJK UNIFIED IDEOGRAPH-8067)

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

Programming

C
\u8067
JavaScript
\u8067
Java
\u8067
Json
\u8067
Python
\u8067
Perl
\x{8067}
PHP
\x{8067}
Ruby
\u{8067}
Rust
\u{8067}
Go
\u8067

Web

CSS
\008067
HtmlDecimal
聧
HtmlHexadecimal
聧
Url
%E8%81%A7

Code

MD5
f46d7241d5810cfd8ba754d8783368ea
Sha1
14f4659935eb92a0591094bf8ebac1234ecc5555
Base64
6IGn

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8067';
console.log(char);  // Output: 聧

Java:

char c = '\u8067';
System.out.println(c);  // Output: 聧

JSON:

{"text": "\u8067"}  // Value: 聧

Python:

char = '\u8067'
print(char)  # Output: 聧

Perl:

my $char = "\x{8067}";
print $char;  # Output: 聧

PHP:

$char = "\x{8067}";
echo $char;  // Output: 聧

Ruby:

char = "\u{8067}"
puts char  # Output: 聧

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008067";  /* Display: 聧 */
}

HTML Decimal:

<p>HTML decimal: &#32871;</p>  <!-- Display: 聧 -->

HTML Hexadecimal:

<p>HTML hex: &#x8067;</p>  <!-- Display: 聧 -->

URL Encoding:

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

Encodings

MD5:

f46d7241d5810cfd8ba754d8783368ea

SHA1:

14f4659935eb92a0591094bf8ebac1234ecc5555

Base64:

6IGn