Unicode Finder

"濘" U+6FD8(CJK UNIFIED IDEOGRAPH-6FD8)

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

Programming

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

Web

CSS
\006FD8
HtmlDecimal
濘
HtmlHexadecimal
濘
Url
%E6%BF%98

Code

MD5
d96ccfa136372f533fae321e602ad1a8
Sha1
a18fa50d4096e192ce7f0a8cb562e32ede31ce6e
Base64
5r+Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6FD8';
console.log(char);  // Output: 濘

Java:

char c = '\u6FD8';
System.out.println(c);  // Output: 濘

JSON:

{"text": "\u6FD8"}  // Value: 濘

Python:

char = '\u6FD8'
print(char)  # Output: 濘

Perl:

my $char = "\x{6FD8}";
print $char;  # Output: 濘

PHP:

$char = "\x{6FD8}";
echo $char;  // Output: 濘

Ruby:

char = "\u{6FD8}"
puts char  # Output: 濘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28632;</p>  <!-- Display: 濘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6FD8;</p>  <!-- Display: 濘 -->

URL Encoding:

// 濘 URL encoding
https://unicodefinder.com/search.php?query=%E6%BF%98

Encodings

MD5:

d96ccfa136372f533fae321e602ad1a8

SHA1:

a18fa50d4096e192ce7f0a8cb562e32ede31ce6e

Base64:

5r+Y