Unicode Finder

"奔" U+5954(CJK UNIFIED IDEOGRAPH-5954)

U+5954
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5954

Programming

C
\u5954
JavaScript
\u5954
Java
\u5954
Json
\u5954
Python
\u5954
Perl
\x{5954}
PHP
\x{5954}
Ruby
\u{5954}
Rust
\u{5954}
Go
\u5954

Web

CSS
\005954
HtmlDecimal
奔
HtmlHexadecimal
奔
Url
%E5%A5%94

Code

MD5
ea62ad167ac331427934209451bce2c3
Sha1
06b214dd521d4e78efa3435ba0d3d2f54e86def0
Base64
5aWU

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5954';
console.log(char);  // Output: 奔

Java:

char c = '\u5954';
System.out.println(c);  // Output: 奔

JSON:

{"text": "\u5954"}  // Value: 奔

Python:

char = '\u5954'
print(char)  # Output: 奔

Perl:

my $char = "\x{5954}";
print $char;  # Output: 奔

PHP:

$char = "\x{5954}";
echo $char;  // Output: 奔

Ruby:

char = "\u{5954}"
puts char  # Output: 奔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005954";  /* Display: 奔 */
}

HTML Decimal:

<p>HTML decimal: &#22868;</p>  <!-- Display: 奔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5954;</p>  <!-- Display: 奔 -->

URL Encoding:

// 奔 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%94

Encodings

MD5:

ea62ad167ac331427934209451bce2c3

SHA1:

06b214dd521d4e78efa3435ba0d3d2f54e86def0

Base64:

5aWU