Unicode Finder

"奬" U+596C(CJK UNIFIED IDEOGRAPH-596C)

U+596C
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-596C

Programming

C
\u596C
JavaScript
\u596C
Java
\u596C
Json
\u596C
Python
\u596C
Perl
\x{596C}
PHP
\x{596C}
Ruby
\u{596C}
Rust
\u{596C}
Go
\u596C

Web

CSS
\00596C
HtmlDecimal
奬
HtmlHexadecimal
奬
Url
%E5%A5%AC

Code

MD5
ad8d4d68beda7ac69ec478787515c4bd
Sha1
c13389e0e6c8d4a73e2ce2cef23cb7872a0be431
Base64
5aWs

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u596C';
console.log(char);  // Output: 奬

Java:

char c = '\u596C';
System.out.println(c);  // Output: 奬

JSON:

{"text": "\u596C"}  // Value: 奬

Python:

char = '\u596C'
print(char)  # Output: 奬

Perl:

my $char = "\x{596C}";
print $char;  # Output: 奬

PHP:

$char = "\x{596C}";
echo $char;  // Output: 奬

Ruby:

char = "\u{596C}"
puts char  # Output: 奬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22892;</p>  <!-- Display: 奬 -->

HTML Hexadecimal:

<p>HTML hex: &#x596C;</p>  <!-- Display: 奬 -->

URL Encoding:

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

Encodings

MD5:

ad8d4d68beda7ac69ec478787515c4bd

SHA1:

c13389e0e6c8d4a73e2ce2cef23cb7872a0be431

Base64:

5aWs