Unicode Finder

"噰" U+5670(CJK UNIFIED IDEOGRAPH-5670)

U+5670
Nama Blok
CJK Unified Ideographs
Nama
CJK UNIFIED IDEOGRAPH-5670

Programming

C
\u5670
JavaScript
\u5670
Java
\u5670
Json
\u5670
Python
\u5670
Perl
\x{5670}
PHP
\x{5670}
Ruby
\u{5670}
Rust
\u{5670}
Go
\u5670

Web

CSS
\005670
HtmlDecimal
噰
HtmlHexadecimal
噰
Url
%E5%99%B0

Code

MD5
842f9ec249c64442b283ff6f2915531a
Sha1
bdf55c99c98827cc8b79e82d4d4f1425e4d8cea1
Base64
5Zmw

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u5670';
console.log(char);  // Output: 噰

Java:

char c = '\u5670';
System.out.println(c);  // Output: 噰

JSON:

{"text": "\u5670"}  // Value: 噰

Python:

char = '\u5670'
print(char)  # Output: 噰

Perl:

my $char = "\x{5670}";
print $char;  # Output: 噰

PHP:

$char = "\x{5670}";
echo $char;  // Output: 噰

Ruby:

char = "\u{5670}"
puts char  # Output: 噰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005670";  /* Display: 噰 */
}

HTML Decimal:

<p>HTML decimal: &#22128;</p>  <!-- Display: 噰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5670;</p>  <!-- Display: 噰 -->

URL Encoding:

// 噰 URL encoding
https://unicodefinder.com/search.php?query=%E5%99%B0

Encodings

MD5:

842f9ec249c64442b283ff6f2915531a

SHA1:

bdf55c99c98827cc8b79e82d4d4f1425e4d8cea1

Base64:

5Zmw