Unicode Finder

"箫" U+7BAB(CJK UNIFIED IDEOGRAPH-7BAB)

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

Programming

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

Web

CSS
\007BAB
HtmlDecimal
箫
HtmlHexadecimal
箫
Url
%E7%AE%AB

Code

MD5
ac92e34ea39900d1e16c6191844f18a6
Sha1
6ad20fbe2f00ed45fce35af7c0b9c453a029d8c9
Base64
566r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7BAB';
console.log(char);  // Output: 箫

Java:

char c = '\u7BAB';
System.out.println(c);  // Output: 箫

JSON:

{"text": "\u7BAB"}  // Value: 箫

Python:

char = '\u7BAB'
print(char)  # Output: 箫

Perl:

my $char = "\x{7BAB}";
print $char;  # Output: 箫

PHP:

$char = "\x{7BAB}";
echo $char;  // Output: 箫

Ruby:

char = "\u{7BAB}"
puts char  # Output: 箫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31659;</p>  <!-- Display: 箫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BAB;</p>  <!-- Display: 箫 -->

URL Encoding:

// 箫 URL encoding
https://unicodefinder.com/search.php?query=%E7%AE%AB

Encodings

MD5:

ac92e34ea39900d1e16c6191844f18a6

SHA1:

6ad20fbe2f00ed45fce35af7c0b9c453a029d8c9

Base64:

566r