Unicode Finder

"澪" U+6FAA(CJK UNIFIED IDEOGRAPH-6FAA)

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

Programming

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

Web

CSS
\006FAA
HtmlDecimal
澪
HtmlHexadecimal
澪
Url
%E6%BE%AA

Code

MD5
3704dc4cc19db4e6ffcd374897e616d6
Sha1
13608a5ec75460e4c49aa976db864365a9638ee2
Base64
5r6q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FAA';
console.log(char);  // Output: 澪

Java:

char c = '\u6FAA';
System.out.println(c);  // Output: 澪

JSON:

{"text": "\u6FAA"}  // Value: 澪

Python:

char = '\u6FAA'
print(char)  # Output: 澪

Perl:

my $char = "\x{6FAA}";
print $char;  # Output: 澪

PHP:

$char = "\x{6FAA}";
echo $char;  // Output: 澪

Ruby:

char = "\u{6FAA}"
puts char  # Output: 澪

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28586;</p>  <!-- Display: 澪 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FAA;</p>  <!-- Display: 澪 -->

URL Encoding:

// 澪 URL encoding
https://unicodefinder.com/search.php?query=%E6%BE%AA

Encodings

MD5:

3704dc4cc19db4e6ffcd374897e616d6

SHA1:

13608a5ec75460e4c49aa976db864365a9638ee2

Base64:

5r6q