Unicode Finder

"奌" U+594C(CJK UNIFIED IDEOGRAPH-594C)

U+594C
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-594C

Programming

C
\u594C
JavaScript
\u594C
Java
\u594C
Json
\u594C
Python
\u594C
Perl
\x{594C}
PHP
\x{594C}
Ruby
\u{594C}
Rust
\u{594C}
Go
\u594C

Web

CSS
\00594C
HtmlDecimal
奌
HtmlHexadecimal
奌
Url
%E5%A5%8C

Code

MD5
7e98fc4bafdbfc9661716f3cb308a1a6
Sha1
821c89d33fb28621653ce34492592e5486f0656a
Base64
5aWM

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u594C';
console.log(char);  // Output: 奌

Java:

char c = '\u594C';
System.out.println(c);  // Output: 奌

JSON:

{"text": "\u594C"}  // Value: 奌

Python:

char = '\u594C'
print(char)  # Output: 奌

Perl:

my $char = "\x{594C}";
print $char;  # Output: 奌

PHP:

$char = "\x{594C}";
echo $char;  // Output: 奌

Ruby:

char = "\u{594C}"
puts char  # Output: 奌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22860;</p>  <!-- Display: 奌 -->

HTML Hexadecimal:

<p>HTML hex: &#x594C;</p>  <!-- Display: 奌 -->

URL Encoding:

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

Encodings

MD5:

7e98fc4bafdbfc9661716f3cb308a1a6

SHA1:

821c89d33fb28621653ce34492592e5486f0656a

Base64:

5aWM