Unicode Finder

"奜" U+595C(CJK UNIFIED IDEOGRAPH-595C)

U+595C
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-595C

Programming

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

Web

CSS
\00595C
HtmlDecimal
奜
HtmlHexadecimal
奜
Url
%E5%A5%9C

Code

MD5
1691dba4fa6e846d9d858d4f207e526c
Sha1
1e2ef18ce6f29ced5f2ee6d261652a5788eebf5b
Base64
5aWc

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u595C';
console.log(char);  // Output: 奜

Java:

char c = '\u595C';
System.out.println(c);  // Output: 奜

JSON:

{"text": "\u595C"}  // Value: 奜

Python:

char = '\u595C'
print(char)  # Output: 奜

Perl:

my $char = "\x{595C}";
print $char;  # Output: 奜

PHP:

$char = "\x{595C}";
echo $char;  // Output: 奜

Ruby:

char = "\u{595C}"
puts char  # Output: 奜

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22876;</p>  <!-- Display: 奜 -->

HTML Hexadecimal:

<p>HTML hex: &#x595C;</p>  <!-- Display: 奜 -->

URL Encoding:

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

Encodings

MD5:

1691dba4fa6e846d9d858d4f207e526c

SHA1:

1e2ef18ce6f29ced5f2ee6d261652a5788eebf5b

Base64:

5aWc