Unicode Finder

"箟" U+7B9F(CJK UNIFIED IDEOGRAPH-7B9F)

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

Programming

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

Web

CSS
\007B9F
HtmlDecimal
箟
HtmlHexadecimal
箟
Url
%E7%AE%9F

Code

MD5
7bd646213fb983cad89f1846f37f6f53
Sha1
9d4805ab6c470c976fd799e7fa8be2faea85e1a3
Base64
566f

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7B9F';
console.log(char);  // Output: 箟

Java:

char c = '\u7B9F';
System.out.println(c);  // Output: 箟

JSON:

{"text": "\u7B9F"}  // Value: 箟

Python:

char = '\u7B9F'
print(char)  # Output: 箟

Perl:

my $char = "\x{7B9F}";
print $char;  # Output: 箟

PHP:

$char = "\x{7B9F}";
echo $char;  // Output: 箟

Ruby:

char = "\u{7B9F}"
puts char  # Output: 箟

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31647;</p>  <!-- Display: 箟 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B9F;</p>  <!-- Display: 箟 -->

URL Encoding:

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

Encodings

MD5:

7bd646213fb983cad89f1846f37f6f53

SHA1:

9d4805ab6c470c976fd799e7fa8be2faea85e1a3

Base64:

566f