Unicode Finder

"奠" U+5960(CJK UNIFIED IDEOGRAPH-5960)

U+5960
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5960

Programming

C
\u5960
JavaScript
\u5960
Java
\u5960
Json
\u5960
Python
\u5960
Perl
\x{5960}
PHP
\x{5960}
Ruby
\u{5960}
Rust
\u{5960}
Go
\u5960

Web

CSS
\005960
HtmlDecimal
奠
HtmlHexadecimal
奠
Url
%E5%A5%A0

Code

MD5
e7152ed5ce233d086717539129aea89e
Sha1
c68783495b8baad3625b6f24903649d08e3850a8
Base64
5aWg

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5960';
console.log(char);  // Output: 奠

Java:

char c = '\u5960';
System.out.println(c);  // Output: 奠

JSON:

{"text": "\u5960"}  // Value: 奠

Python:

char = '\u5960'
print(char)  # Output: 奠

Perl:

my $char = "\x{5960}";
print $char;  # Output: 奠

PHP:

$char = "\x{5960}";
echo $char;  // Output: 奠

Ruby:

char = "\u{5960}"
puts char  # Output: 奠

Rust:

let c = '\u{5960}';
println!("{}", c);  // Output: 奠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005960";  /* Display: 奠 */
}

HTML Decimal:

<p>HTML decimal: &#22880;</p>  <!-- Display: 奠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5960;</p>  <!-- Display: 奠 -->

URL Encoding:

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

Encodings

MD5:

e7152ed5ce233d086717539129aea89e

SHA1:

c68783495b8baad3625b6f24903649d08e3850a8

Base64:

5aWg