Unicode Finder

"綄" U+7D84(CJK UNIFIED IDEOGRAPH-7D84)

U+7D84
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7D84

Programming

C
\u7D84
JavaScript
\u7D84
Java
\u7D84
Json
\u7D84
Python
\u7D84
Perl
\x{7D84}
PHP
\x{7D84}
Ruby
\u{7D84}
Rust
\u{7D84}
Go
\u7D84

Web

CSS
\007D84
HtmlDecimal
綄
HtmlHexadecimal
綄
Url
%E7%B6%84

Code

MD5
aeaf0ac73b6e66f5e2032fca9ccb3001
Sha1
d3674d065c2d4ba0e3438e6a7dd3c7f41ffec2f5
Base64
57aE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D84';
console.log(char);  // Output: 綄

Java:

char c = '\u7D84';
System.out.println(c);  // Output: 綄

JSON:

{"text": "\u7D84"}  // Value: 綄

Python:

char = '\u7D84'
print(char)  # Output: 綄

Perl:

my $char = "\x{7D84}";
print $char;  # Output: 綄

PHP:

$char = "\x{7D84}";
echo $char;  // Output: 綄

Ruby:

char = "\u{7D84}"
puts char  # Output: 綄

Rust:

let c = '\u{7D84}';
println!("{}", c);  // Output: 綄

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007D84";  /* Display: 綄 */
}

HTML Decimal:

<p>HTML decimal: &#32132;</p>  <!-- Display: 綄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D84;</p>  <!-- Display: 綄 -->

URL Encoding:

// 綄 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%84

Encodings

MD5:

aeaf0ac73b6e66f5e2032fca9ccb3001

SHA1:

d3674d065c2d4ba0e3438e6a7dd3c7f41ffec2f5

Base64:

57aE