Unicode Finder

"澐" U+6F90(CJK UNIFIED IDEOGRAPH-6F90)

U+6F90
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-6F90

Programming

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

Web

CSS
\006F90
HtmlDecimal
澐
HtmlHexadecimal
澐
Url
%E6%BE%90

Code

MD5
9897bcfcfe62e35a13f68bfa36c53782
Sha1
a52578b75eea158fff0a45f5fc936a6140379af0
Base64
5r6Q

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F90';
console.log(char);  // Output: 澐

Java:

char c = '\u6F90';
System.out.println(c);  // Output: 澐

JSON:

{"text": "\u6F90"}  // Value: 澐

Python:

char = '\u6F90'
print(char)  # Output: 澐

Perl:

my $char = "\x{6F90}";
print $char;  # Output: 澐

PHP:

$char = "\x{6F90}";
echo $char;  // Output: 澐

Ruby:

char = "\u{6F90}"
puts char  # Output: 澐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28560;</p>  <!-- Display: 澐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F90;</p>  <!-- Display: 澐 -->

URL Encoding:

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

Encodings

MD5:

9897bcfcfe62e35a13f68bfa36c53782

SHA1:

a52578b75eea158fff0a45f5fc936a6140379af0

Base64:

5r6Q