Unicode Finder

"寅" U+5BC5(CJK UNIFIED IDEOGRAPH-5BC5)

U+5BC5
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5BC5

Programming

C
\u5BC5
JavaScript
\u5BC5
Java
\u5BC5
Json
\u5BC5
Python
\u5BC5
Perl
\x{5BC5}
PHP
\x{5BC5}
Ruby
\u{5BC5}
Rust
\u{5BC5}
Go
\u5BC5

Web

CSS
\005BC5
HtmlDecimal
寅
HtmlHexadecimal
寅
Url
%E5%AF%85

Code

MD5
82a04090a5020545e16e092f8cd7cdf6
Sha1
0e578c6403a14fd5ea5211bf9ebf964fc729eb6a
Base64
5a+F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BC5';
console.log(char);  // Output: 寅

Java:

char c = '\u5BC5';
System.out.println(c);  // Output: 寅

JSON:

{"text": "\u5BC5"}  // Value: 寅

Python:

char = '\u5BC5'
print(char)  # Output: 寅

Perl:

my $char = "\x{5BC5}";
print $char;  # Output: 寅

PHP:

$char = "\x{5BC5}";
echo $char;  // Output: 寅

Ruby:

char = "\u{5BC5}"
puts char  # Output: 寅

Rust:

let c = '\u{5BC5}';
println!("{}", c);  // Output: 寅

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005BC5";  /* Display: 寅 */
}

HTML Decimal:

<p>HTML decimal: &#23493;</p>  <!-- Display: 寅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BC5;</p>  <!-- Display: 寅 -->

URL Encoding:

// 寅 URL encoding
https://unicodefinder.com/search.php?query=%E5%AF%85

Encodings

MD5:

82a04090a5020545e16e092f8cd7cdf6

SHA1:

0e578c6403a14fd5ea5211bf9ebf964fc729eb6a

Base64:

5a+F