Unicode Finder

"兛" U+515B(CJK UNIFIED IDEOGRAPH-515B)

U+515B
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-515B

Programming

C
\u515B
JavaScript
\u515B
Java
\u515B
Json
\u515B
Python
\u515B
Perl
\x{515B}
PHP
\x{515B}
Ruby
\u{515B}
Rust
\u{515B}
Go
\u515B

Web

CSS
\00515B
HtmlDecimal
兛
HtmlHexadecimal
兛
Url
%E5%85%9B

Code

MD5
92adabe57ed6808cdffd7f94841833b2
Sha1
7f6c27678e32d37fc09733e2dca9f1fd0f8f5e13
Base64
5YWb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u515B';
console.log(char);  // Output: 兛

Java:

char c = '\u515B';
System.out.println(c);  // Output: 兛

JSON:

{"text": "\u515B"}  // Value: 兛

Python:

char = '\u515B'
print(char)  # Output: 兛

Perl:

my $char = "\x{515B}";
print $char;  # Output: 兛

PHP:

$char = "\x{515B}";
echo $char;  // Output: 兛

Ruby:

char = "\u{515B}"
puts char  # Output: 兛

Rust:

let c = '\u{515B}';
println!("{}", c);  // Output: 兛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00515B";  /* Display: 兛 */
}

HTML Decimal:

<p>HTML decimal: &#20827;</p>  <!-- Display: 兛 -->

HTML Hexadecimal:

<p>HTML hex: &#x515B;</p>  <!-- Display: 兛 -->

URL Encoding:

// 兛 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%9B

Encodings

MD5:

92adabe57ed6808cdffd7f94841833b2

SHA1:

7f6c27678e32d37fc09733e2dca9f1fd0f8f5e13

Base64:

5YWb