Unicode Finder

"箯" U+7BAF(CJK UNIFIED IDEOGRAPH-7BAF)

U+7BAF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7BAF

Programming

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

Web

CSS
\007BAF
HtmlDecimal
箯
HtmlHexadecimal
箯
Url
%E7%AE%AF

Code

MD5
a574e2a3048cad4e045c142516949b1e
Sha1
4312c56568ffc793103e446e3ddf9065afad3cc0
Base64
566v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7BAF';
console.log(char);  // Output: 箯

Java:

char c = '\u7BAF';
System.out.println(c);  // Output: 箯

JSON:

{"text": "\u7BAF"}  // Value: 箯

Python:

char = '\u7BAF'
print(char)  # Output: 箯

Perl:

my $char = "\x{7BAF}";
print $char;  # Output: 箯

PHP:

$char = "\x{7BAF}";
echo $char;  // Output: 箯

Ruby:

char = "\u{7BAF}"
puts char  # Output: 箯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31663;</p>  <!-- Display: 箯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7BAF;</p>  <!-- Display: 箯 -->

URL Encoding:

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

Encodings

MD5:

a574e2a3048cad4e045c142516949b1e

SHA1:

4312c56568ffc793103e446e3ddf9065afad3cc0

Base64:

566v