Unicode Finder

"潏" U+6F4F(CJK UNIFIED IDEOGRAPH-6F4F)

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

Programming

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

Web

CSS
\006F4F
HtmlDecimal
潏
HtmlHexadecimal
潏
Url
%E6%BD%8F

Code

MD5
d4558017714488859acedb2a9acacdde
Sha1
4fdf5025f3aef6cb48aae6de8b8d83f7f28d4063
Base64
5r2P

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6F4F';
console.log(char);  // Output: 潏

Java:

char c = '\u6F4F';
System.out.println(c);  // Output: 潏

JSON:

{"text": "\u6F4F"}  // Value: 潏

Python:

char = '\u6F4F'
print(char)  # Output: 潏

Perl:

my $char = "\x{6F4F}";
print $char;  # Output: 潏

PHP:

$char = "\x{6F4F}";
echo $char;  // Output: 潏

Ruby:

char = "\u{6F4F}"
puts char  # Output: 潏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28495;</p>  <!-- Display: 潏 -->

HTML Hexadecimal:

<p>HTML hex: &#x6F4F;</p>  <!-- Display: 潏 -->

URL Encoding:

// 潏 URL encoding
https://unicodefinder.com/search.php?query=%E6%BD%8F

Encodings

MD5:

d4558017714488859acedb2a9acacdde

SHA1:

4fdf5025f3aef6cb48aae6de8b8d83f7f28d4063

Base64:

5r2P