Unicode Finder

"垿" U+57BF(CJK UNIFIED IDEOGRAPH-57BF)

U+57BF
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-57BF

Programming

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

Web

CSS
\0057BF
HtmlDecimal
垿
HtmlHexadecimal
垿
Url
%E5%9E%BF

Code

MD5
4e395a1426e92e46e62f3eca22d3bc76
Sha1
da56bb281251441e313520e0c4785c41853b4707
Base64
5Z6/

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u57BF';
console.log(char);  // Output: 垿

Java:

char c = '\u57BF';
System.out.println(c);  // Output: 垿

JSON:

{"text": "\u57BF"}  // Value: 垿

Python:

char = '\u57BF'
print(char)  # Output: 垿

Perl:

my $char = "\x{57BF}";
print $char;  # Output: 垿

PHP:

$char = "\x{57BF}";
echo $char;  // Output: 垿

Ruby:

char = "\u{57BF}"
puts char  # Output: 垿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22463;</p>  <!-- Display: 垿 -->

HTML Hexadecimal:

<p>HTML hex: &#x57BF;</p>  <!-- Display: 垿 -->

URL Encoding:

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

Encodings

MD5:

4e395a1426e92e46e62f3eca22d3bc76

SHA1:

da56bb281251441e313520e0c4785c41853b4707

Base64:

5Z6/