Unicode Finder

"垻" U+57BB(CJK UNIFIED IDEOGRAPH-57BB)

U+57BB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-57BB

Programming

C
\u57BB
JavaScript
\u57BB
Java
\u57BB
Json
\u57BB
Python
\u57BB
Perl
\x{57BB}
PHP
\x{57BB}
Ruby
\u{57BB}
Rust
\u{57BB}
Go
\u57BB

Web

CSS
\0057BB
HtmlDecimal
垻
HtmlHexadecimal
垻
Url
%E5%9E%BB

Code

MD5
4896b6f65c0a02b6af986e47c5a0b23e
Sha1
fcf527902a57fd90a3d80e3e92a24ea76185fe02
Base64
5Z67

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u57BB';
console.log(char);  // Output: 垻

Java:

char c = '\u57BB';
System.out.println(c);  // Output: 垻

JSON:

{"text": "\u57BB"}  // Value: 垻

Python:

char = '\u57BB'
print(char)  # Output: 垻

Perl:

my $char = "\x{57BB}";
print $char;  # Output: 垻

PHP:

$char = "\x{57BB}";
echo $char;  // Output: 垻

Ruby:

char = "\u{57BB}"
puts char  # Output: 垻

Rust:

let c = '\u{57BB}';
println!("{}", c);  // Output: 垻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0057BB";  /* Display: 垻 */
}

HTML Decimal:

<p>HTML decimal: &#22459;</p>  <!-- Display: 垻 -->

HTML Hexadecimal:

<p>HTML hex: &#x57BB;</p>  <!-- Display: 垻 -->

URL Encoding:

// 垻 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%BB

Encodings

MD5:

4896b6f65c0a02b6af986e47c5a0b23e

SHA1:

fcf527902a57fd90a3d80e3e92a24ea76185fe02

Base64:

5Z67