Unicode Finder

"审" U+5BA1(CJK UNIFIED IDEOGRAPH-5BA1)

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

Programming

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

Web

CSS
\005BA1
HtmlDecimal
审
HtmlHexadecimal
审
Url
%E5%AE%A1

Code

MD5
268942952de9c371921b94edd7e8d1ea
Sha1
08f5127ddbe43dcf24bdfa28eef55719b28b942c
Base64
5a6h

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5BA1';
console.log(char);  // Output: 审

Java:

char c = '\u5BA1';
System.out.println(c);  // Output: 审

JSON:

{"text": "\u5BA1"}  // Value: 审

Python:

char = '\u5BA1'
print(char)  # Output: 审

Perl:

my $char = "\x{5BA1}";
print $char;  # Output: 审

PHP:

$char = "\x{5BA1}";
echo $char;  // Output: 审

Ruby:

char = "\u{5BA1}"
puts char  # Output: 审

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23457;</p>  <!-- Display: 审 -->

HTML Hexadecimal:

<p>HTML hex: &#x5BA1;</p>  <!-- Display: 审 -->

URL Encoding:

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

Encodings

MD5:

268942952de9c371921b94edd7e8d1ea

SHA1:

08f5127ddbe43dcf24bdfa28eef55719b28b942c

Base64:

5a6h