Unicode Finder

"涹" U+6DB9(CJK UNIFIED IDEOGRAPH-6DB9)

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

Programming

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

Web

CSS
\006DB9
HtmlDecimal
涹
HtmlHexadecimal
涹
Url
%E6%B6%B9

Code

MD5
e45c354f4220d8e460351c6df52a79b4
Sha1
84d189f89b87d570c0f611389cd95290528536c9
Base64
5ra5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6DB9';
console.log(char);  // Output: 涹

Java:

char c = '\u6DB9';
System.out.println(c);  // Output: 涹

JSON:

{"text": "\u6DB9"}  // Value: 涹

Python:

char = '\u6DB9'
print(char)  # Output: 涹

Perl:

my $char = "\x{6DB9}";
print $char;  # Output: 涹

PHP:

$char = "\x{6DB9}";
echo $char;  // Output: 涹

Ruby:

char = "\u{6DB9}"
puts char  # Output: 涹

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28089;</p>  <!-- Display: 涹 -->

HTML Hexadecimal:

<p>HTML hex: &#x6DB9;</p>  <!-- Display: 涹 -->

URL Encoding:

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

Encodings

MD5:

e45c354f4220d8e460351c6df52a79b4

SHA1:

84d189f89b87d570c0f611389cd95290528536c9

Base64:

5ra5