Unicode Finder

"奝" U+595D(CJK UNIFIED IDEOGRAPH-595D)

U+595D
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-595D

Programming

C
\u595D
JavaScript
\u595D
Java
\u595D
Json
\u595D
Python
\u595D
Perl
\x{595D}
PHP
\x{595D}
Ruby
\u{595D}
Rust
\u{595D}
Go
\u595D

Web

CSS
\00595D
HtmlDecimal
奝
HtmlHexadecimal
奝
Url
%E5%A5%9D

Code

MD5
af555013d8de7d57fca584da94fc4582
Sha1
40f7a032fe3d15e10a9c18e90400d0645be6e277
Base64
5aWd

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u595D';
console.log(char);  // Output: 奝

Java:

char c = '\u595D';
System.out.println(c);  // Output: 奝

JSON:

{"text": "\u595D"}  // Value: 奝

Python:

char = '\u595D'
print(char)  # Output: 奝

Perl:

my $char = "\x{595D}";
print $char;  # Output: 奝

PHP:

$char = "\x{595D}";
echo $char;  // Output: 奝

Ruby:

char = "\u{595D}"
puts char  # Output: 奝

Rust:

let c = '\u{595D}';
println!("{}", c);  // Output: 奝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00595D";  /* Display: 奝 */
}

HTML Decimal:

<p>HTML decimal: &#22877;</p>  <!-- Display: 奝 -->

HTML Hexadecimal:

<p>HTML hex: &#x595D;</p>  <!-- Display: 奝 -->

URL Encoding:

// 奝 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%9D

Encodings

MD5:

af555013d8de7d57fca584da94fc4582

SHA1:

40f7a032fe3d15e10a9c18e90400d0645be6e277

Base64:

5aWd