Unicode Finder

"壱" U+58F1(CJK UNIFIED IDEOGRAPH-58F1)

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

Programming

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

Web

CSS
\0058F1
HtmlDecimal
壱
HtmlHexadecimal
壱
Url
%E5%A3%B1

Code

MD5
03b6000f0d6c89a71faea38fd865e0dc
Sha1
0253c4bf780f34fc7a78f2669ac0ba40763db64f
Base64
5aOx

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u58F1';
console.log(char);  // Output: 壱

Java:

char c = '\u58F1';
System.out.println(c);  // Output: 壱

JSON:

{"text": "\u58F1"}  // Value: 壱

Python:

char = '\u58F1'
print(char)  # Output: 壱

Perl:

my $char = "\x{58F1}";
print $char;  # Output: 壱

PHP:

$char = "\x{58F1}";
echo $char;  // Output: 壱

Ruby:

char = "\u{58F1}"
puts char  # Output: 壱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22769;</p>  <!-- Display: 壱 -->

HTML Hexadecimal:

<p>HTML hex: &#x58F1;</p>  <!-- Display: 壱 -->

URL Encoding:

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

Encodings

MD5:

03b6000f0d6c89a71faea38fd865e0dc

SHA1:

0253c4bf780f34fc7a78f2669ac0ba40763db64f

Base64:

5aOx