Unicode Finder

"濚" U+6FDA(CJK UNIFIED IDEOGRAPH-6FDA)

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

Programming

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

Web

CSS
\006FDA
HtmlDecimal
濚
HtmlHexadecimal
濚
Url
%E6%BF%9A

Code

MD5
b895e8acf5fdafe8a59b00d2f46b0031
Sha1
344496fcd1512473ddfb6375622ace5b7b6e9306
Base64
5r+a

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FDA';
console.log(char);  // Output: 濚

Java:

char c = '\u6FDA';
System.out.println(c);  // Output: 濚

JSON:

{"text": "\u6FDA"}  // Value: 濚

Python:

char = '\u6FDA'
print(char)  # Output: 濚

Perl:

my $char = "\x{6FDA}";
print $char;  # Output: 濚

PHP:

$char = "\x{6FDA}";
echo $char;  // Output: 濚

Ruby:

char = "\u{6FDA}"
puts char  # Output: 濚

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28634;</p>  <!-- Display: 濚 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FDA;</p>  <!-- Display: 濚 -->

URL Encoding:

// 濚 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%9A

Encodings

MD5:

b895e8acf5fdafe8a59b00d2f46b0031

SHA1:

344496fcd1512473ddfb6375622ace5b7b6e9306

Base64:

5r+a