Unicode Finder

"榒" U+6992(CJK UNIFIED IDEOGRAPH-6992)

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

Programming

C
\u6992
JavaScript
\u6992
Java
\u6992
Json
\u6992
Python
\u6992
Perl
\x{6992}
PHP
\x{6992}
Ruby
\u{6992}
Rust
\u{6992}
Go
\u6992

Web

CSS
\006992
HtmlDecimal
榒
HtmlHexadecimal
榒
Url
%E6%A6%92

Code

MD5
352605b4c93098453f8c794ccae453da
Sha1
8cbfd3ca65fb936ae3da99599cb704eb51a6f4b2
Base64
5qaS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6992';
console.log(char);  // Output: 榒

Java:

char c = '\u6992';
System.out.println(c);  // Output: 榒

JSON:

{"text": "\u6992"}  // Value: 榒

Python:

char = '\u6992'
print(char)  # Output: 榒

Perl:

my $char = "\x{6992}";
print $char;  # Output: 榒

PHP:

$char = "\x{6992}";
echo $char;  // Output: 榒

Ruby:

char = "\u{6992}"
puts char  # Output: 榒

Rust:

let c = '\u{6992}';
println!("{}", c);  // Output: 榒

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006992";  /* Display: 榒 */
}

HTML Decimal:

<p>HTML decimal: &#27026;</p>  <!-- Display: 榒 -->

HTML Hexadecimal:

<p>HTML hex: &#x6992;</p>  <!-- Display: 榒 -->

URL Encoding:

// 榒 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%92

Encodings

MD5:

352605b4c93098453f8c794ccae453da

SHA1:

8cbfd3ca65fb936ae3da99599cb704eb51a6f4b2

Base64:

5qaS