Unicode Finder

"宔" U+5B94(CJK UNIFIED IDEOGRAPH-5B94)

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

Programming

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

Web

CSS
\005B94
HtmlDecimal
宔
HtmlHexadecimal
宔
Url
%E5%AE%94

Code

MD5
8f7414c29608372948dd58b7098dd899
Sha1
085a99d0f92519b865cc9b69a1265dc0cad81cb0
Base64
5a6U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5B94';
console.log(char);  // Output: 宔

Java:

char c = '\u5B94';
System.out.println(c);  // Output: 宔

JSON:

{"text": "\u5B94"}  // Value: 宔

Python:

char = '\u5B94'
print(char)  # Output: 宔

Perl:

my $char = "\x{5B94}";
print $char;  # Output: 宔

PHP:

$char = "\x{5B94}";
echo $char;  // Output: 宔

Ruby:

char = "\u{5B94}"
puts char  # Output: 宔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23444;</p>  <!-- Display: 宔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B94;</p>  <!-- Display: 宔 -->

URL Encoding:

// 宔 URL encoding
https://unicodefinder.com/search.php?query=%E5%AE%94

Encodings

MD5:

8f7414c29608372948dd58b7098dd899

SHA1:

085a99d0f92519b865cc9b69a1265dc0cad81cb0

Base64:

5a6U