Unicode Finder

"壬" U+58EC(CJK UNIFIED IDEOGRAPH-58EC)

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

Programming

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

Web

CSS
\0058EC
HtmlDecimal
壬
HtmlHexadecimal
壬
Url
%E5%A3%AC

Code

MD5
022980ffe4c4cfffe87e29f7416470e5
Sha1
3ef8b9feecfd960adf0c988397b0027c7637452d
Base64
5aOs

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u58EC';
console.log(char);  // Output: 壬

Java:

char c = '\u58EC';
System.out.println(c);  // Output: 壬

JSON:

{"text": "\u58EC"}  // Value: 壬

Python:

char = '\u58EC'
print(char)  # Output: 壬

Perl:

my $char = "\x{58EC}";
print $char;  # Output: 壬

PHP:

$char = "\x{58EC}";
echo $char;  // Output: 壬

Ruby:

char = "\u{58EC}"
puts char  # Output: 壬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22764;</p>  <!-- Display: 壬 -->

HTML Hexadecimal:

<p>HTML hex: &#x58EC;</p>  <!-- Display: 壬 -->

URL Encoding:

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

Encodings

MD5:

022980ffe4c4cfffe87e29f7416470e5

SHA1:

3ef8b9feecfd960adf0c988397b0027c7637452d

Base64:

5aOs