Unicode Finder

"嫏" U+5ACF(CJK UNIFIED IDEOGRAPH-5ACF)

U+5ACF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-5ACF

Programming

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

Web

CSS
\005ACF
HtmlDecimal
嫏
HtmlHexadecimal
嫏
Url
%E5%AB%8F

Code

MD5
50a420eac1d08b4799ae02865f1450dc
Sha1
54a5ac5088259a1a2cfa779181c494f083bfba5f
Base64
5auP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5ACF';
console.log(char);  // Output: 嫏

Java:

char c = '\u5ACF';
System.out.println(c);  // Output: 嫏

JSON:

{"text": "\u5ACF"}  // Value: 嫏

Python:

char = '\u5ACF'
print(char)  # Output: 嫏

Perl:

my $char = "\x{5ACF}";
print $char;  # Output: 嫏

PHP:

$char = "\x{5ACF}";
echo $char;  // Output: 嫏

Ruby:

char = "\u{5ACF}"
puts char  # Output: 嫏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23247;</p>  <!-- Display: 嫏 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ACF;</p>  <!-- Display: 嫏 -->

URL Encoding:

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

Encodings

MD5:

50a420eac1d08b4799ae02865f1450dc

SHA1:

54a5ac5088259a1a2cfa779181c494f083bfba5f

Base64:

5auP