Unicode Finder

"箏" U+7B8F(CJK UNIFIED IDEOGRAPH-7B8F)

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

Programming

C
\u7B8F
JavaScript
\u7B8F
Java
\u7B8F
Json
\u7B8F
Python
\u7B8F
Perl
\x{7B8F}
PHP
\x{7B8F}
Ruby
\u{7B8F}
Rust
\u{7B8F}
Go
\u7B8F

Web

CSS
\007B8F
HtmlDecimal
箏
HtmlHexadecimal
箏
Url
%E7%AE%8F

Code

MD5
c9385b6992c9885e49d18990e9d35aa9
Sha1
3ccd1c6ae1197d6409313664bc2f193ff730e064
Base64
566P

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7B8F';
console.log(char);  // Output: 箏

Java:

char c = '\u7B8F';
System.out.println(c);  // Output: 箏

JSON:

{"text": "\u7B8F"}  // Value: 箏

Python:

char = '\u7B8F'
print(char)  # Output: 箏

Perl:

my $char = "\x{7B8F}";
print $char;  # Output: 箏

PHP:

$char = "\x{7B8F}";
echo $char;  // Output: 箏

Ruby:

char = "\u{7B8F}"
puts char  # Output: 箏

Rust:

let c = '\u{7B8F}';
println!("{}", c);  // Output: 箏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007B8F";  /* Display: 箏 */
}

HTML Decimal:

<p>HTML decimal: &#31631;</p>  <!-- Display: 箏 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B8F;</p>  <!-- Display: 箏 -->

URL Encoding:

// 箏 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%8F

Encodings

MD5:

c9385b6992c9885e49d18990e9d35aa9

SHA1:

3ccd1c6ae1197d6409313664bc2f193ff730e064

Base64:

566P