Unicode Finder

"滔" U+6ED4(CJK UNIFIED IDEOGRAPH-6ED4)

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

Programming

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

Web

CSS
\006ED4
HtmlDecimal
滔
HtmlHexadecimal
滔
Url
%E6%BB%94

Code

MD5
5f7f5b2669957659af6795fdbb9cd340
Sha1
33ba2222e490552db7b52c9d5dddce9797dc1793
Base64
5ruU

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u6ED4';
console.log(char);  // Output: 滔

Java:

char c = '\u6ED4';
System.out.println(c);  // Output: 滔

JSON:

{"text": "\u6ED4"}  // Value: 滔

Python:

char = '\u6ED4'
print(char)  # Output: 滔

Perl:

my $char = "\x{6ED4}";
print $char;  # Output: 滔

PHP:

$char = "\x{6ED4}";
echo $char;  // Output: 滔

Ruby:

char = "\u{6ED4}"
puts char  # Output: 滔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28372;</p>  <!-- Display: 滔 -->

HTML Hexadecimal:

<p>HTML hex: &#x6ED4;</p>  <!-- Display: 滔 -->

URL Encoding:

// 滔 URL encoding
https://unicodefinder.com/search.php?query=%E6%BB%94

Encodings

MD5:

5f7f5b2669957659af6795fdbb9cd340

SHA1:

33ba2222e490552db7b52c9d5dddce9797dc1793

Base64:

5ruU