Unicode Finder

"掫" U+63AB(CJK UNIFIED IDEOGRAPH-63AB)

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

Programming

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

Web

CSS
\0063AB
HtmlDecimal
掫
HtmlHexadecimal
掫
Url
%E6%8E%AB

Code

MD5
b45489a1eda71946bac35913601cb52b
Sha1
c2044bb4ca45eb57939398834a2b1396958d92ad
Base64
5o6r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u63AB';
console.log(char);  // Output: 掫

Java:

char c = '\u63AB';
System.out.println(c);  // Output: 掫

JSON:

{"text": "\u63AB"}  // Value: 掫

Python:

char = '\u63AB'
print(char)  # Output: 掫

Perl:

my $char = "\x{63AB}";
print $char;  # Output: 掫

PHP:

$char = "\x{63AB}";
echo $char;  // Output: 掫

Ruby:

char = "\u{63AB}"
puts char  # Output: 掫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25515;</p>  <!-- Display: 掫 -->

HTML Hexadecimal:

<p>HTML hex: &#x63AB;</p>  <!-- Display: 掫 -->

URL Encoding:

// 掫 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%AB

Encodings

MD5:

b45489a1eda71946bac35913601cb52b

SHA1:

c2044bb4ca45eb57939398834a2b1396958d92ad

Base64:

5o6r