Unicode Finder

"壳" U+58F3(CJK UNIFIED IDEOGRAPH-58F3)

U+58F3
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-58F3

Programming

C
\u58F3
JavaScript
\u58F3
Java
\u58F3
Json
\u58F3
Python
\u58F3
Perl
\x{58F3}
PHP
\x{58F3}
Ruby
\u{58F3}
Rust
\u{58F3}
Go
\u58F3

Web

CSS
\0058F3
HtmlDecimal
壳
HtmlHexadecimal
壳
Url
%E5%A3%B3

Code

MD5
7aa70c702cefc6d24e869162585edce2
Sha1
8877e29f3bd2d7dda715e49f452966aa74bf64f9
Base64
5aOz

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u58F3';
console.log(char);  // Output: 壳

Java:

char c = '\u58F3';
System.out.println(c);  // Output: 壳

JSON:

{"text": "\u58F3"}  // Value: 壳

Python:

char = '\u58F3'
print(char)  # Output: 壳

Perl:

my $char = "\x{58F3}";
print $char;  # Output: 壳

PHP:

$char = "\x{58F3}";
echo $char;  // Output: 壳

Ruby:

char = "\u{58F3}"
puts char  # Output: 壳

Rust:

let c = '\u{58F3}';
println!("{}", c);  // Output: 壳

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0058F3";  /* Display: 壳 */
}

HTML Decimal:

<p>HTML decimal: &#22771;</p>  <!-- Display: 壳 -->

HTML Hexadecimal:

<p>HTML hex: &#x58F3;</p>  <!-- Display: 壳 -->

URL Encoding:

// 壳 URL encoding
https://unicodefinder.com/search.php?query=%E5%A3%B3

Encodings

MD5:

7aa70c702cefc6d24e869162585edce2

SHA1:

8877e29f3bd2d7dda715e49f452966aa74bf64f9

Base64:

5aOz