Unicode Finder

"傫" U+50AB(CJK UNIFIED IDEOGRAPH-50AB)

U+50AB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-50AB

Programming

C
\u50AB
JavaScript
\u50AB
Java
\u50AB
Json
\u50AB
Python
\u50AB
Perl
\x{50AB}
PHP
\x{50AB}
Ruby
\u{50AB}
Rust
\u{50AB}
Go
\u50AB

Web

CSS
\0050AB
HtmlDecimal
傫
HtmlHexadecimal
傫
Url
%E5%82%AB

Code

MD5
850de00791afacaf9101ed2c167544af
Sha1
19497c47974594ae65a0f45f4539c6cbf28cf5ad
Base64
5YKr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50AB';
console.log(char);  // Output: 傫

Java:

char c = '\u50AB';
System.out.println(c);  // Output: 傫

JSON:

{"text": "\u50AB"}  // Value: 傫

Python:

char = '\u50AB'
print(char)  # Output: 傫

Perl:

my $char = "\x{50AB}";
print $char;  # Output: 傫

PHP:

$char = "\x{50AB}";
echo $char;  // Output: 傫

Ruby:

char = "\u{50AB}"
puts char  # Output: 傫

Rust:

let c = '\u{50AB}';
println!("{}", c);  // Output: 傫

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0050AB";  /* Display: 傫 */
}

HTML Decimal:

<p>HTML decimal: &#20651;</p>  <!-- Display: 傫 -->

HTML Hexadecimal:

<p>HTML hex: &#x50AB;</p>  <!-- Display: 傫 -->

URL Encoding:

// 傫 URL encoding
https://unicodefinder.com/search.php?query=%E5%82%AB

Encodings

MD5:

850de00791afacaf9101ed2c167544af

SHA1:

19497c47974594ae65a0f45f4539c6cbf28cf5ad

Base64:

5YKr