Unicode Finder

"篰" U+7BF0(CJK UNIFIED IDEOGRAPH-7BF0)

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

Programming

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

Web

CSS
\007BF0
HtmlDecimal
篰
HtmlHexadecimal
篰
Url
%E7%AF%B0

Code

MD5
3eefa01fec9c18eea28d052fdaa10592
Sha1
b6e02226a9520fa8688f61313d6d58e077ab7f64
Base64
56+w

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BF0';
console.log(char);  // Output: 篰

Java:

char c = '\u7BF0';
System.out.println(c);  // Output: 篰

JSON:

{"text": "\u7BF0"}  // Value: 篰

Python:

char = '\u7BF0'
print(char)  # Output: 篰

Perl:

my $char = "\x{7BF0}";
print $char;  # Output: 篰

PHP:

$char = "\x{7BF0}";
echo $char;  // Output: 篰

Ruby:

char = "\u{7BF0}"
puts char  # Output: 篰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31728;</p>  <!-- Display: 篰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BF0;</p>  <!-- Display: 篰 -->

URL Encoding:

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

Encodings

MD5:

3eefa01fec9c18eea28d052fdaa10592

SHA1:

b6e02226a9520fa8688f61313d6d58e077ab7f64

Base64:

56+w