Unicode Finder

"嫋" U+5ACB(CJK UNIFIED IDEOGRAPH-5ACB)

U+5ACB
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5ACB

Programming

C
\u5ACB
JavaScript
\u5ACB
Java
\u5ACB
Json
\u5ACB
Python
\u5ACB
Perl
\x{5ACB}
PHP
\x{5ACB}
Ruby
\u{5ACB}
Rust
\u{5ACB}
Go
\u5ACB

Web

CSS
\005ACB
HtmlDecimal
嫋
HtmlHexadecimal
嫋
Url
%E5%AB%8B

Code

MD5
f04f1dcb3084d498c709f61d42ee1259
Sha1
bd3fcc58c0eb5afae46ad8a86b72c57f301637c3
Base64
5auL

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5ACB';
console.log(char);  // Output: 嫋

Java:

char c = '\u5ACB';
System.out.println(c);  // Output: 嫋

JSON:

{"text": "\u5ACB"}  // Value: 嫋

Python:

char = '\u5ACB'
print(char)  # Output: 嫋

Perl:

my $char = "\x{5ACB}";
print $char;  # Output: 嫋

PHP:

$char = "\x{5ACB}";
echo $char;  // Output: 嫋

Ruby:

char = "\u{5ACB}"
puts char  # Output: 嫋

Rust:

let c = '\u{5ACB}';
println!("{}", c);  // Output: 嫋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005ACB";  /* Display: 嫋 */
}

HTML Decimal:

<p>HTML decimal: &#23243;</p>  <!-- Display: 嫋 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ACB;</p>  <!-- Display: 嫋 -->

URL Encoding:

// 嫋 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%8B

Encodings

MD5:

f04f1dcb3084d498c709f61d42ee1259

SHA1:

bd3fcc58c0eb5afae46ad8a86b72c57f301637c3

Base64:

5auL