Unicode Finder

"厵" U+53B5(CJK UNIFIED IDEOGRAPH-53B5)

U+53B5
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-53B5

Programming

C
\u53B5
JavaScript
\u53B5
Java
\u53B5
Json
\u53B5
Python
\u53B5
Perl
\x{53B5}
PHP
\x{53B5}
Ruby
\u{53B5}
Rust
\u{53B5}
Go
\u53B5

Web

CSS
\0053B5
HtmlDecimal
厵
HtmlHexadecimal
厵
Url
%E5%8E%B5

Code

MD5
74e7b944e9362f4077019bf1e47da394
Sha1
f5852a3311959e68e7cd1dd6a71c98a116063e29
Base64
5Y61

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u53B5';
console.log(char);  // Output: 厵

Java:

char c = '\u53B5';
System.out.println(c);  // Output: 厵

JSON:

{"text": "\u53B5"}  // Value: 厵

Python:

char = '\u53B5'
print(char)  # Output: 厵

Perl:

my $char = "\x{53B5}";
print $char;  # Output: 厵

PHP:

$char = "\x{53B5}";
echo $char;  // Output: 厵

Ruby:

char = "\u{53B5}"
puts char  # Output: 厵

Rust:

let c = '\u{53B5}';
println!("{}", c);  // Output: 厵

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053B5";  /* Display: 厵 */
}

HTML Decimal:

<p>HTML decimal: &#21429;</p>  <!-- Display: 厵 -->

HTML Hexadecimal:

<p>HTML hex: &#x53B5;</p>  <!-- Display: 厵 -->

URL Encoding:

// 厵 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%B5

Encodings

MD5:

74e7b944e9362f4077019bf1e47da394

SHA1:

f5852a3311959e68e7cd1dd6a71c98a116063e29

Base64:

5Y61