Unicode Finder

"篹" U+7BF9(CJK UNIFIED IDEOGRAPH-7BF9)

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

Programming

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

Web

CSS
\007BF9
HtmlDecimal
篹
HtmlHexadecimal
篹
Url
%E7%AF%B9

Code

MD5
10d12a62beb8b12805d65bcba1d2529b
Sha1
2089143a3ca2c7304b7dd0abccb78b83239eaddf
Base64
56+5

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BF9';
console.log(char);  // Output: 篹

Java:

char c = '\u7BF9';
System.out.println(c);  // Output: 篹

JSON:

{"text": "\u7BF9"}  // Value: 篹

Python:

char = '\u7BF9'
print(char)  # Output: 篹

Perl:

my $char = "\x{7BF9}";
print $char;  # Output: 篹

PHP:

$char = "\x{7BF9}";
echo $char;  // Output: 篹

Ruby:

char = "\u{7BF9}"
puts char  # Output: 篹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31737;</p>  <!-- Display: 篹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BF9;</p>  <!-- Display: 篹 -->

URL Encoding:

// 篹 URL encoding
https://unicodefinder.com/search.php?query=%E7%AF%B9

Encodings

MD5:

10d12a62beb8b12805d65bcba1d2529b

SHA1:

2089143a3ca2c7304b7dd0abccb78b83239eaddf

Base64:

56+5