Unicode Finder

"媿" U+5ABF(CJK UNIFIED IDEOGRAPH-5ABF)

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

Programming

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

Web

CSS
\005ABF
HtmlDecimal
媿
HtmlHexadecimal
媿
Url
%E5%AA%BF

Code

MD5
e305d70ec7b10e40b2d13fc661c15b88
Sha1
be7696b9c1e198e7e10f434722303b117d18c8b7
Base64
5aq/

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5ABF';
console.log(char);  // Output: 媿

Java:

char c = '\u5ABF';
System.out.println(c);  // Output: 媿

JSON:

{"text": "\u5ABF"}  // Value: 媿

Python:

char = '\u5ABF'
print(char)  # Output: 媿

Perl:

my $char = "\x{5ABF}";
print $char;  # Output: 媿

PHP:

$char = "\x{5ABF}";
echo $char;  // Output: 媿

Ruby:

char = "\u{5ABF}"
puts char  # Output: 媿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23231;</p>  <!-- Display: 媿 -->

HTML Hexadecimal:

<p>HTML hex: &#x5ABF;</p>  <!-- Display: 媿 -->

URL Encoding:

// 媿 URL encoding
https://unicodefinder.com/search.php?query=%E5%AA%BF

Encodings

MD5:

e305d70ec7b10e40b2d13fc661c15b88

SHA1:

be7696b9c1e198e7e10f434722303b117d18c8b7

Base64:

5aq/