Unicode Finder

"涭" U+6DAD(CJK UNIFIED IDEOGRAPH-6DAD)

U+6DAD
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-6DAD

Programming

C
\u6DAD
JavaScript
\u6DAD
Java
\u6DAD
Json
\u6DAD
Python
\u6DAD
Perl
\x{6DAD}
PHP
\x{6DAD}
Ruby
\u{6DAD}
Rust
\u{6DAD}
Go
\u6DAD

Web

CSS
\006DAD
HtmlDecimal
涭
HtmlHexadecimal
涭
Url
%E6%B6%AD

Code

MD5
39c0fd12af2f2e8206dff80fd0deb0c9
Sha1
36e32651d995112a0c72148d24eccdf3bdc81918
Base64
5rat

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DAD';
console.log(char);  // Output: 涭

Java:

char c = '\u6DAD';
System.out.println(c);  // Output: 涭

JSON:

{"text": "\u6DAD"}  // Value: 涭

Python:

char = '\u6DAD'
print(char)  # Output: 涭

Perl:

my $char = "\x{6DAD}";
print $char;  # Output: 涭

PHP:

$char = "\x{6DAD}";
echo $char;  // Output: 涭

Ruby:

char = "\u{6DAD}"
puts char  # Output: 涭

Rust:

let c = '\u{6DAD}';
println!("{}", c);  // Output: 涭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006DAD";  /* Display: 涭 */
}

HTML Decimal:

<p>HTML decimal: &#28077;</p>  <!-- Display: 涭 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DAD;</p>  <!-- Display: 涭 -->

URL Encoding:

// 涭 URL encoding
https://unicodefinder.com/search.php?query=%E6%B6%AD

Encodings

MD5:

39c0fd12af2f2e8206dff80fd0deb0c9

SHA1:

36e32651d995112a0c72148d24eccdf3bdc81918

Base64:

5rat